在当前主题的functions.php末尾添加:
即可在主题中使用showp短代码显示当前文章总数,在文章中也可以使用短代码:
当前文章总数为:392篇
add_shortcode('mycode', 'my_shortcode_func');
function my_shortcode_func() {
return wp_count_posts()->publish;
}
add_shortcode('showp', 'my_shortcode_func');
function wpdaxue_disallow_tags_for_author( $taxonomy ) {
global $wp_taxonomies;
if ('post_tag' === $taxonomy) {
$wp_taxonomies[$taxonomy]->cap->assign_terms = 'edit_others_posts';
}
}
add_action('registered_taxonomy', 'wpdaxue_disallow_tags_for_author');
注意,每次主题更新后都需要手动添加,如果你想自动添加可以启动子主题。
子主题开启见:https://codex.wordpress.org/zh-cn:%E5%AD%90%E4%B8%BB%E9%A2%98