Browse
For agents
About
UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WP
/
1.2.32
UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WP
v1.2.32
Switch version
1.2.72
1.2.71
1.2.70
1.2.69
1.2.68
1.2.67
1.2.66
1.2.65
1.2.64
1.2.63
trunk
1.0.10
1.0.11
1.0.12
1.0.13
1.0.14
1.0.15
1.0.16
1.0.17
1.0.18
1.0.19
1.0.20
1.0.21
1.0.22
1.0.23
All 172 releases
Overview
Code
userswp
/
templates
/
no-users-found.php
no-users-found.php
in UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WP 1.2.32, at templates/no-users-found.php
13 lines
347 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
/**
3
* Displayed when no users are found matching the current query.
4
*/
5
6
if
(
!
defined
(
'
ABSPATH
'
)
)
{
7
exit
;
//
Exit if accessed directly
8
}
9
10
echo
aui
(
)
->
alert
(
array
(
//
phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
11
'
type
'
=>
'
info
'
,
12
'
content
'
=>
esc_html__
(
"
No users were found matching your selection.
"
,
'
userswp
'
)
13
)
)
;