WordPress评论表单标题标签:comment_form_title

WordPress模板标签comment_form_title用于输出评论表单的标题,通常用在自定义评论模板中。 comment_form_title( string $noreplytext = false, string $replytext = false, boolean $linktoparent = true ) 函数参数$noreplytext 字符串值 …

WordPress评论时间标签:comment_time

WordPress模板标签comment_time用于输出当前评论的发表时间,与comment_date()函数不同之处在于comment_time()默认只输出时间,而comme …

WordPress评论日期标签:comment_date

WordPress模板标签comment_date用于输出评论的日期,通常用在自定义评论模板中。 comment_date( string $d = '', integer $comment_ID = 0 ) 函数参数$d 字符串值,默认值:取WordPress后台设置的日期 …

WordPress评论摘要标签:comment_excerpt

WordPress模板标签comment_excerpt用于输出评论摘要,默认输出20个字符,通常用在自定义评论模板中。 comment_excerpt( integer $comment_ID = 0 ) 函数参数$comment_ID 整数型,默认值:0 …

WordPress评论内容标签:comment_text

WordPress模板标签comment_text用于输出评论内容,通常用在自定义评论模板中。 comment_text( integer $comment_ID = 0, array $args = array() ) 函数参数$comment_ID 整数型,默认值:0 指定一个评论ID, …

WordPress评论类型标签:comment_type

WordPress模板标签comment_type用于输出评论类型,通常用在自定义评论模板中。WordPress的评论类型有:comment、trackback、pingback comment_type( …

WordPress评论作者IP标签:comment_author_IP

WordPress模板标签comment_author_IP用于输出评论作者的IP地址,通常用来识别垃圾评论、灌水。 comment_author_IP( integer $comment_ID = 0 ) 函数参数$comment_ID 整数型,默认值:0 指定 …

WHMCS后台模板(Admin Templates)获取$companyname

WHMCS前台模板支持变量$companyname输出公司名称(即网站名称),通常用在<title>标签中,但后台模板<title>标签中一律是WHMCS, …

WordPress评论作者主页链接标签:comment_author_url_link

WordPress模板标签comment_author_url_link用于输出评论作者主页链接,与comment_author_url()函数的区别在于comment_autho …

WordPress评论作者URL标签:comment_author_url

WordPress模板标签comment_author_url用于输出评论作者的主页链接,通常用在自定义评论模板中。 comment_author_url( integer $comment_ID = 0 ) 函数参数$comment_ID 整数型,默认值:0 提供 …