我在中添加了过滤器functions.php
为了在我的主页上的每篇帖子的标题下显示日期。随机日期现在也出现在导航中。有人能帮我把那些拿走吗?我很高兴他们现在出现在帖子上,所以我做了一些正确的事情!但是导航中的日期必须取消!
我正在开发这个网站:internalcompass。美国/城堡
我在函数的子主题Twenty12中使用了这段代码。php添加日期:
<?php
function add_dates_to_title_wpse106605($title, $id) {
if (is_home()){
$time = get_the_time( $d = \'l, F j, Y\', $post = $id );
return $title . \'<br><small class="time">\' . $time . \'</small>\';
} else {
return $title;
}
}
add_filter(\'the_title\', \'add_dates_to_title_wpse106605\', 10, 2);
?>
SO网友:Milo
添加其他检查in_the_loop()
要仅影响主查询循环中输出的标题,请执行以下操作:
function add_dates_to_title_wpse106605($title, $id) {
if ( is_home() && in_the_loop() ){ // <-- added in_the_loop()
$time = get_the_time( $d = \'l, F j, Y\', $post = $id );
return $title . \'<br><small class="time">\' . $time . \'</small>\';
}
return $title;
}
add_filter(\'the_title\', \'add_dates_to_title_wpse106605\', 10, 2);