Variables in post title

时间:2015-07-09 作者:Ahmed Saad

如何使我的帖子标题动态化?

比如说,我想用这个标题发表一篇文章:

今天是[日]/[月]/[年]

[日]应该被解析为php代码,该代码将检索当前日期,以及[月]和[年]的相同想法

1 个回复
最合适的回答,由SO网友:webtoure 整理而成

只需使用the_title 过滤以连接到标题内容并使用它。

add_filter( \'the_title\', function( $title ) {
    // Manipulate the $title as you want and then return that.
    // You can add test conditions such as \'is_main_query\' 
    // (https://codex.wordpress.org/Function_Reference/is_main_query)

    return $title;
} );

结束

相关推荐

如何检测特定单词是否位于the_title()的末尾

我有这样的活动列表PAPA ROACH AT THE PARAMOUNT IN HUNTINGTON ON APR 28, 2015 我试图在最后一次“打开”后删除所有内容$s = the_title(); echo substr($s, 0, strrpos($s, \'ON\') - 1); 如果“$s”是常规字符串,则上面的代码有效,但如果它是“The\\u title()”,则不起作用。有没有办法将中的\\u title()转换为静态字符串?