php Wordpress动态档案标题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Wordpress动态档案标题相关的知识,希望对你有一定的参考价值。

<h1 class="page-title">
<?php
  if ( is_category() ) {
      printf( __( 'Category Archives: %s', 'shape' ), '<span>' . single_cat_title( '', false ) . '</span>' );
   
  } elseif ( is_tag() ) {
      printf( __( 'Tag Archives: %s', 'shape' ), '<span>' . single_tag_title( '', false ) . '</span>' );
   
  } elseif ( is_author() ) {
      /* Queue the first post, that way we know
       * what author we're dealing with (if that is the case).
      */
      the_post();
      printf( __( 'Author Archives: %s', 'shape' ), '<span class="vcard"><a class="url fn n" href="' . get_author_posts_url( get_the_author_meta( "ID" ) ) . '" title="' . esc_attr( get_the_author() ) . '" rel="me">' . get_the_author() . '</a></span>' );
      /* Since we called the_post() above, we need to
       * rewind the loop back to the beginning that way
       * we can run the loop properly, in full.
       */
      rewind_posts();
   
  } elseif ( is_day() ) {
      printf( __( 'Daily Archives: %s', 'shape' ), '<span>' . get_the_date() . '</span>' );
   
  } elseif ( is_month() ) {
      printf( __( 'Monthly Archives: %s', 'shape' ), '<span>' . get_the_date( 'F Y' ) . '</span>' );
   
  } elseif ( is_year() ) {
      printf( __( 'Yearly Archives: %s', 'shape' ), '<span>' . get_the_date( 'Y' ) . '</span>' );
   
  } else {
      _e( 'Archives', 'shape' );
   
  }
?>
</h1>

// Source: http://themeshaper.com/2012/11/07/the-archive-template/

以上是关于php Wordpress动态档案标题的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress 档案小部件中的月份缩写

PHP 我的Wordpress档案页面

PHP Wordpress的基于日期的类别档案

PHP WordPress档案基础

一次显示一个类别的 Wordpress 档案?

Wordpress 单页、类别和档案菜单当前项