WordPress文章修改作者标签:the_modified_author

WordPress模板标签the_modified_author输出文章的最后修改作者名称,需要用在The Loop主循环里。 the_modified_author() 该函数没有参数,直接调用即可。 函数使用示例<p& …

WordPress文章修改日期标签:the_modified_date

WordPress模板标签the_modified_date输出文章最后修改日期,需要用在The Loop主循环里。 the_modified_date( string $d = '', string $before = '', string $after = '', boolean $echo = true ) 函数参数$d 字符串值,默认值: …

WordPress文章修改时间标签:the_modified_time

WordPress模板标签the_modified_time输出文章修改时间,需要用在The Loop主循环里。 the_modified_time( string $d = '') 函数参数$d 字符串值,默认值:WordPress后台选项中设 …

WordPress XML格式文章发表日期标签:the_date_xml

WordPress模板标签the_date_xml输出XML格式的文章发表日期,一般用得比较少。 the_date_xml() 该函数没有参数,直接调用即可。 函数使用示例<p>Date posted: <?php the_date_xml(); ?></p> 扩展阅 …

WordPress文章发表日期标签:the_date

WordPress模板标签the_date输出当前文章的发表日期,需要用在The Loop主循环中。 the_date( string $d = '', string $before = '', string $after = '', boolean $echo = true ) 函数参数$d 字符串值,默认值:WordPres …

WordPress文章发表时间标签:the_time

WordPress模板标签the_time输出当前文章的发表时间,需要用在The Loop主循环中。 the_time( string $d = '' ) 函数参数$d 字符串值,默认为WordPress后台常规设置中的时间格式 …

WordPress评论翻页导航标签:paginate_comments_links

WordPress模板标签paginate_comments_links输出数字形式的评论翻页导航,通常用在自定义评论模板中。 paginate_comments_links( array $args = array() ) 函数参数$args数组,默认值如下: $defaults = array( …

WordPress下一页评论标签:next_comments_link

WordPress模板标签next_comments_link输出下一页评论链接,用于在评论模板中制作翻页导航。 next_comments_link( string $label = '', integer $max_page = 0 ) 函数参数$label 字符串值,默认值:Newer …

WordPress上一页评论标签:previous_comments_link

WordPress模板标签previous_comments_link输出上一页评论链接,用于在评论模板中制作评论翻页导航。 previous_comments_link( string $label = '' ) 函数参数函数使用示例<?php previous_comments_link( &#3 …

WordPress取消评论回复标签:cancel_comment_reply_link

WordPress模板标签cancel_comment_reply_link输出一个取消评论回复的链接,通常用在自定义评论模板中。 cancel_comment_reply_link( string $text = '' ) 函数参数$text 字符串值,默认值:C …