我正在尝试在WordPress中的特定帖子标题上显示当前时间。我该怎么办?
我找到了一些解决方案,这是最接近的解决方案:
Display the post date in title in Wordpress
-
它将在每个帖子标题上添加当前时间,因此我通过使用is_single添加条件:
if ( is_single(1137) ) {
add_filter('the_title','my_add_date_to_title',10,2);
}
但是它不起作用。
我该怎么办?
答案 0 :(得分:0)
为什么不将条件移到函数中呢?
function my_add_date_to_title($title, $id) {
if ( $id != 1137 ) {
//your function in here
}
}
add_filter('the_title','my_add_date_to_title',10,2);