Browse
For agents
About
Friends
/
2.8.1
Friends
v2.8.1
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
/
parts
/
title.php
title.php
in Friends 2.8.1, at templates/frontend/parts/title.php
21 lines
419 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
* This template contains the content title part for an article on /friends/.
4
*
5
*
@version
1.0
6
*
@package
Friends
7
*/
8
9
?
>
<
h4
class
=
"
card-title
"
>
10
<
?
php
if
(
Friends
\
Friends
::
CPT
===
get_post_type
(
)
)
:
?
>
11
<
?
php
12
$
args
[
'
friends
'
]
->
frontend
->
link
(
13
get_the_permalink
(
)
,
14
get_the_title
(
)
15
)
;
16
?
>
17
<
?
php
else
:
?
>
18
<
a
href
=
"
<?php the_permalink(); ?>
"
>
<
?
php
the_title
(
)
;
?
>
<
/
a
>
19
<
?
php
endif
;
?
>
20
<
/
h4
>
21