# userswp/1.2.67/templates/no-users-found.php

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

- Page: https://pluginprobe.com/plugins/userswp/1.2.67/code/templates/no-users-found.php
- Raw: https://pluginprobe.com/plugins/userswp/1.2.67/raw/templates/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.67/code/templates/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' )
));
```
