如何使用add_filter或add_action从WordPress中的评论中删除日期和时间?
我不想使用CSS方式。
答案 0 :(得分:0)
首先,您需要在主题的functions.php文件中添加以下代码。
// Remove comment date
function wpb_remove_comment_date($date, $d, $comment) {
if ( !is_admin() ) {
return;
} else {
return $date;
}
}
add_filter( 'get_comment_date', 'wpb_remove_comment_date', 10, 3);
// Remove comment time
function wpb_remove_comment_time($date, $d, $comment) {
if ( !is_admin() ) {
return;
} else {
return $date;
}
}
add_filter( 'get_comment_time', 'wpb_remove_comment_time', 10, 3);
要删除右键单击at或posted上的单词,请从浏览器菜单中选择Inspect。
.comment-time {
display:none;
}