Last active
June 1, 2016 23:09
-
-
Save daronspence/f714ab95aa16e58f615a8a589da8ce47 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Put this inside of the widget template file for ACFW | |
// You could also just add this stuff to the template file for your sidebar. Same thing essentially :) | |
// Note, none of this has been tested! You have been warned! :) | |
$department = get_user_meta('fire_department', wp_get_current_user()->ID ); | |
$federal_id = get_user_meta('federal_id', wp_get_current_user()->ID ); | |
$spreadsheet_url = get_user_meta('billing_spreadsheet_url', wp_get_current_user()->ID ); | |
?> | |
<div>Department: <?php echo $department; ?></div> | |
<div>Federal ID: <?php echo $federal_id; ?></div> | |
<div> | |
<a href="<?php echo $spreadsheet_url; ?>">Billing Spreadsheet</a> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment