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