# userswp/1.2.65/templates/bootstrap/no-users-found.php

UsersWP – Front-end login form, User Registration, User Profile &amp; Members Directory plugin for WP, version 1.2.65. 12 lines.

- Page: https://pluginprobe.com/plugins/userswp/1.2.65/code/templates/bootstrap/no-users-found.php
- Raw: https://pluginprobe.com/plugins/userswp/1.2.65/raw/templates/bootstrap/no-users-found.php
- Modified: 2024-03-13T13:47:28+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/userswp/1.2.65/code/templates/bootstrap/no-users-found.php#L10-L20`.

```php
<?php
/**
 * Displayed when no users are found matching the current query.
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}
echo aui()->alert(array( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
	'type'=>'info',
	'content'=> esc_html__( 'No users were found matching your selection.', 'userswp' )
));
```
