# friends/2.8.4/templates/admin/add-friend.php

Friends, version 2.8.4. 55 lines.

- Page: https://pluginprobe.com/plugins/friends/2.8.4/code/templates/admin/add-friend.php
- Raw: https://pluginprobe.com/plugins/friends/2.8.4/raw/templates/admin/add-friend.php
- Modified: 2023-07-23T07:15:30+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/2.8.4/code/templates/admin/add-friend.php#L10-L20`.

```php
<?php
/**
 * This template contains the Admin Send Friend Request form.
 *
 * @version 1.0
 * @package Friends
 */

$quick_subscribe = _x( 'Quick Subscribe', 'button', 'friends' );

?><div class="wrap"><form method="post">
	<?php wp_nonce_field( 'add-friend' ); ?>
	<p>
		<?php esc_html_e( 'To follow a friend or to subscribe to any other feed, enter their URL here.', 'friends' ); ?>
		<?php esc_html_e( 'You can either enter a feed URL directly or the main URL which will contain pointers to the available feeds.', 'friends' ); ?>
		<?php
		// translators: %s is a URL.
		echo wp_kses( sprintf( __( 'For quick adding or following you can also <a href=%s>use a bookmarklet</a>.', 'friends' ), esc_url( self_admin_url( 'tools.php' ) ) ), array( 'a' => array( 'href' => array() ) ) );
		?>
	</p>

	<?php do_action( 'friends_add_friend_form_top', $args ); ?>

	<table class="form-table">
		<tbody>
			<tr>
				<th scope="row"><label for="friend_url"><?php esc_html_e( 'Site', 'friends' ); ?></label></th>
				<td>
					<input type="text" autofocus id="friend_url" name="friend_url" value="<?php echo esc_attr( $args['friend_url'] ); ?>" required placeholder="<?php echo esc_attr( $args['add-friends-placeholder'] ); ?>" class="regular-text" />
					<p class="description" id="friend_url-description">
						<?php esc_html_e( "In the next step we'll give you a selection of available feeds.", 'friends' ); ?>
					</p>
				</td>
			</tr>
			<tr>
				<th></th>
				<td>
					<input type="submit" name="step2" class="button button-primary" value="<?php echo esc_attr_x( 'Next »', 'button', 'friends' ); ?>" />

					<input type="submit" name="quick-subscribe" class="button" value="<?php echo esc_attr( $quick_subscribe ); ?>" />

					<p class="description" id="quick-subscribe-description">
						<?php
						// translators: %s is the text for the Quick Subscribe button.
						echo wp_kses( sprintf( __( '<em>%s</em> will skip the next step and just subscribe you.', 'friends' ), $quick_subscribe ), array( 'em' => array() ) );
						?>
					</p>

				</td>
			</tr>
		</tbody>
	</table>

</form>

```
