Browse
For agents
About
Friends
/
4.3.2
Friends
v4.3.2
Switch version
4.3.2
4.3.1
4.3.0
4.2.2
4.2.1
4.2.0
4.1.0
2.7.4
2.7.5
2.7.6
2.7.7
2.7.8
2.7.9
2.8.0
2.8.1
2.8.2
2.8.3
2.8.4
2.8.5
2.8.6
2.8.7
2.8.8
2.8.9
2.9.0
2.9.1
All 88 releases
Overview
Code
friends
/
templates
/
frontend
/
error-message.php
error-message.php
in Friends 4.3.2, at templates/frontend/error-message.php
11 lines
341 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
div
class
=
"
columns
"
>
2
<
div
class
=
"
card column col-12
"
>
3
<
div
class
=
"
card-body message
"
>
4
<
strong
class
=
"
message
"
>
<
?
php
echo
wp_kses_post
(
$
args
[
'
message
'
]
)
;
?
>
<
/
strong
>
5
<
?
php
if
(
$
args
[
'
error
'
]
)
:
?
>
6
<
blockquote
class
=
"
error
"
>
<
?
php
echo
wp_kses_post
(
$
args
[
'
error
'
]
)
;
?
>
<
/
blockquote
>
7
<
?
php
endif
;
?
>
8
<
/
div
>
9
<
/
div
>
10
<
/
div
>
11