| 1 |
<?php |
| 2 |
/** |
| 3 |
* Outputs the dashboard contents |
| 4 |
* |
| 5 |
* This template can be overridden by copying it to yourtheme/propertyhive/account/dashboard.php. |
| 6 |
* |
| 7 |
* @author PropertyHive |
| 8 |
* @package PropertyHive/Templates |
| 9 |
* @version 1.0.0 |
| 10 |
*/ |
| 11 |
|
| 12 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly |
| 13 |
global $current_user; |
| 14 |
?> |
| 15 |
|
| 16 |
<p><?php |
| 17 |
_e( 'Hello', 'propertyhive' ); |
| 18 |
echo ' <strong>' . $current_user->display_name . '</strong>.'; |
| 19 |
?></p> |
| 20 |
|
| 21 |
<p><?php |
| 22 |
_e('From within your account you can manage your details and amend your requirements.', 'propertyhive' ); |
| 23 |
?></p> |
| 24 |
|
| 25 |
<?php do_action( 'propertyhive_account_dashboard' ); |