运维日志
-
WordPress XML格式文章发表日期标签:the_date_xml
WordPress模板标签the_date_xml输出XML格式的文章发表日期,一般用得比较少。 the_date_xml() 该函数没有参数,直接调用即可。 函数使用示例 Dat…
-
WordPress文章修改时间标签:the_modified_time
WordPress模板标签the_modified_time输出文章修改时间,需要用在The Loop主循环里。 the_modified_time( string $d = &#…
-
WordPress文章修改日期标签:the_modified_date
WordPress模板标签the_modified_date输出文章最后修改日期,需要用在The Loop主循环里。 the_modified_date( string $d = …
-
WordPress文章修改作者标签:the_modified_author
WordPress模板标签the_modified_author输出文章的最后修改作者名称,需要用在The Loop主循环里。 the_modified_author() 该函数没…
-
WordPress月份归档页标题标签:single_month_title
WordPress模板标签single_month_title仅在月份归档页输出年月标题,即使年份归档页也不会输出任何内容。 single_month_title( string …
-
WordPress评论类型标签:comment_type
WordPress模板标签comment_type用于输出评论类型,通常用在自定义评论模板中。WordPress的评论类型有:comment、trackback、pingback …
-
WordPress评论内容标签:comment_text
WordPress模板标签comment_text用于输出评论内容,通常用在自定义评论模板中。 comment_text( integer $comment_ID = 0, arr…
-
WordPress评论摘要标签:comment_excerpt
WordPress模板标签comment_excerpt用于输出评论摘要,默认输出20个字符,通常用在自定义评论模板中。 comment_excerpt( integer $com…
-
WordPress评论日期标签:comment_date
WordPress模板标签comment_date用于输出评论的日期,通常用在自定义评论模板中。 comment_date( string $d = '', i…
-
WordPress评论时间标签:comment_time
WordPress模板标签comment_time用于输出当前评论的发表时间,与comment_date()函数不同之处在于comment_time()默认只输出时间,而comme…