# friends/4.2.1/templates/frontend/add-friend.php

Friends, version 4.2.1. 21 lines.

- Page: https://pluginprobe.com/plugins/friends/4.2.1/code/templates/frontend/add-friend.php
- Raw: https://pluginprobe.com/plugins/friends/4.2.1/raw/templates/frontend/add-friend.php
- Modified: 2026-05-21T14:51:08+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/friends/4.2.1/code/templates/frontend/add-friend.php#L10-L20`.

```php
<?php
/**
 * This is the Add Friend page
 *
 * @version 1.0
 * @package Friends
 */

$args['title'] = __( 'Add Friend', 'friends' );
$args['no-bottom-margin'] = true;

Friends\Friends::template_loader()->get_template_part( 'frontend/header', null, $args );

Friends\Friends::template_loader()->get_template_part( 'frontend/add-friend-form', null, $args );

Friends\Friends::template_loader()->get_template_part(
	'frontend/footer',
	null,
	$args
);

```
