10-Tag tags 标签标签
- single_tag_title <?php single_tag_title( $prefix, $display ); ?>
- 输出当前文章所属的标签,$prefix是前缀字符串,$display为false的时候,仅返回值.
- tag_description <?php echo tag_description( $tagID ); ?>
- 返回标签的说明,$tagID是指定的ID.
- the_tags <?php the_tags( $before, $separator, $after ); ?>
- 输出循环中的文章的所属标签,$separator是分隔符.
- wp_generate_tag_cloud <?php wp_generate_tag_cloud( $tags, $args ); ?>
- 该标签返回一个可生成标签云的HTML字符串,详情见:http://codex.wordpress.org/Template_Tags/wp_generate_tag_cloud.
- wp_tag_cloud <?php wp_tag_cloud( $args ); ?>
- 输出标签云的列表,详情见: http://codex.wordpress.org/Template_Tags/wp_tag_cloud
11-Author tags 作者标签
- the_author <?php the_author(); ?>
- 输出当前文章的作者.
- the_author_link <?php the_author_link(); ?>
- 输出当前文章的作者的链接.
- get_the_author_link <?php echo get_the_author_link(); ?>
- 返回当前文章作者的链接.
- the_author_meta <?php the_author_meta( $field, $userID ); ?>
- 输出作者的元数据,详情见:http://codex.wordpress.org/Template_Tags/the_author_meta
- the_author_posts <?php the_author_posts(); ?>
- 输出当前文章作者的发表文章数.
- the_author_posts_link <?php the_author_posts_link(); ?>
- 输出该作者发表的所有文章.
- wp_dropdown_users <?php wp_dropdown_users( $args ); ?>
- 输出作者的下拉菜单列表,详情见:http://codex.wordpress.org/Template_Tags/wp_dropdown_users
- wp_list_authors <?php wp_list_authors( $args ); ?>
- 输出作者的列表,详情见: http://codex.wordpress.org/Template_Tags/wp_list_authors
12-Date and Time tags 日期和时间标签
- get_calendar <?php get_calendar( $initial ); ?>
- 输出日历,$initial为是否大写判断,默认true.
- get_the_date <?php get_the_date( $d ); ?>
- 返回当前文章的发布日期.(3.0新标签)
- single_month_title <?php single_month_title( $prefix, $display ) ?>
- 输出当前文章的月归档. $prefix是前缀字符串,$display为false的时候,仅返回值.
- the_date <?php the_date( $format, $before, $after, $echo ); ?>
- 输出当前文章的日期,$format是日期格式字符串,$echo 为false时只返回,不输出。
- the_date_xml <?php the_date_xml(); ?>
- 输出YYYY-MM-DD格式的日期.
- the_modified_author <?php the_modified_author(); ?>
- 输出最后修改的作者.
- the_modified_date <?php the_modified_date( $d, $before, $after, $echo ); ?>
- 输出最后修改的日期. $d是日期格式字符串,$echo 为false时只返回,不输出
- the_modified_time <?php the_modified_time( $d ); ?>
- 输出最后修改的时间.$d是日期格式字符串.
- the_time <?php the_time( $d ); ?>
- 输出当前文章的发布时间..$d是日期格式字符串.