wordpress统计某个标签下的文章总数

function.php1、根据Tag的ID调用//根据标签ID获取文章数 function get_tag_post_count_by_id( $tag_id ) { $tag = get_term_by( 'id', $tag_id, 'post_tag' ); _make_cat_compat( $tag ); return $tag->count; }2、根据Tag的

- 阅读全文 -

WordPress如何给已发布文章批量添加TAG 标签

在当前网站的主题的functions.php里加上下面的代码;function naruco_mod_tags(){ $post_ids = array(1,2,3,4,5,6,7,8,9,10);//要加tag的文章id foreach( $post_ids as $k => $post_id ){ wp_set_post_tags( $post_id, array('做网站','建站培训

- 阅读全文 -