| 1 |
<?php |
| 2 |
/** |
| 3 |
* This is the Add Friend page |
| 4 |
* |
| 5 |
* @version 1.0 |
| 6 |
* @package Friends |
| 7 |
*/ |
| 8 |
|
| 9 |
$args['title'] = __( 'Add Friend', 'friends' ); |
| 10 |
$args['no-bottom-margin'] = true; |
| 11 |
|
| 12 |
Friends\Friends::template_loader()->get_template_part( 'frontend/header', null, $args ); |
| 13 |
|
| 14 |
Friends\Friends::template_loader()->get_template_part( 'frontend/add-friend-form', null, $args ); |
| 15 |
|
| 16 |
Friends\Friends::template_loader()->get_template_part( |
| 17 |
'frontend/footer', |
| 18 |
null, |
| 19 |
$args |
| 20 |
); |
| 21 |
|