| 1 |
<?php |
| 2 |
/** |
| 3 |
* My Account page |
| 4 |
* |
| 5 |
* This template can be overridden by copying it to yourtheme/propertyhive/account/my-account.php. |
| 6 |
* |
| 7 |
* @author PropertyHive |
| 8 |
* @package PropertyHive/Templates |
| 9 |
* @version 1.0.0 |
| 10 |
*/ |
| 11 |
|
| 12 |
if ( ! defined( 'ABSPATH' ) ) { |
| 13 |
exit; |
| 14 |
} |
| 15 |
|
| 16 |
//ph_print_notices(); |
| 17 |
|
| 18 |
?> |
| 19 |
|
| 20 |
<div class="propertyhive-my-account"> |
| 21 |
|
| 22 |
<?php |
| 23 |
/** |
| 24 |
* propertyhive_my_account_content hook |
| 25 |
* |
| 26 |
* @hooked propertyhive_my_account_navigation - 10 |
| 27 |
* @hooked propertyhive_my_account_sections - 20 |
| 28 |
*/ |
| 29 |
do_action( 'propertyhive_my_account_content' ); |
| 30 |
?> |
| 31 |
|
| 32 |
</div> |
| 33 |
|