类别标签ID为" 4"。我想从这些帖子中删除日期。以下是在所有帖子后添加日期的代码:
function add_after_post_content($content) {
if(!is_feed() && is_main_query()) {
$content .= '<p class="my-date-style"> '.get_the_date ('F j, Y'). ' '.'| by Alexander Gilmour </p>';
}
return $content;
}
add_filter('the_content', 'add_after_post_content');