PluginProbe
Friends / 4.3.0
Friends v4.3.0
4.3.2 4.3.1 4.3.0 4.2.2 4.2.1 4.2.0 4.1.0 2.7.4 2.7.5 2.7.6 2.7.7 2.7.8 2.7.9 2.8.0 2.8.1 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.8.9 2.9.0 2.9.1 All 88 releases
friends / templates / frontend / add-friend.php

add-friend.php in Friends 4.3.0, at templates/frontend/add-friend.php

21 lines 449 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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