如何从此功能中省略WP类别?

时间:2017-02-01 23:30:36

标签: php wordpress

类别标签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'). '&nbsp;'.'| by Alexander Gilmour </p>';
    }
    return $content;
}
add_filter('the_content', 'add_after_post_content');

0 个答案:

没有答案