提问人:Paweł Wiszniewski 提问时间:10/8/2018 最后编辑:Madhur BhaiyaPaweł Wiszniewski 更新时间:10/8/2018 访问量:747
the_title函数在 Wordpress 中返回字符串而不是 echo
the_title function to return string instead of echo in Wordpress
问:
在Wordpress中,如何将回显标题的函数更改为返回字符串?the_title()
$title
我在尝试:
the_title() -> $title
the_title() = $title
答:
2赞
Madhur Bhaiya
10/8/2018
#1
两种方式:
使用 get_the_title()
函数。它可用于检索帖子标题。它采用可选的 Post ID 或 WP_Post Object 作为参数。
$title = get_the_title();
或
在 the_title()
函数中将第三个参数设置为 false。默认情况下,function 会回显标题。第三个参数可用于将 echoing 设置为 false,并返回标题:$echo
the_title()
$title = the_title('','', false);
评论