add_theme_support( ‘title-tag’ )
在 wordpress 4.1 开始新增了一个名为 title-tag 的主题特性。 返回当前文章的前/后导航。
通过声明这个特性,主题就能知道自身并没有定义标题,wordpress 就可以安全的添加标题而无须担心会导致重复添加。function
theme_slug_setup(){
add_theme_support(
'title-tag'
);
}
add_action(
'after_setup_theme'
,
'theme_slug_setup'
);
the_post_navigation() / get_the_post_navigation()
while
(have_posts()):the_post();
get_template_part(
'content'
,get_post_format());
the_post_navigation();
endwhile
;
//endoftheloop.