In part three of this series, we covered the second batch of WordPress template tags. In Part 4, we introduce the third batch of nearly 200 template tags. Throughout this tutorial we'll see template tags for comments.
Get and display the comment author name: get_comment_author()
& comment_author()
These template tags return or display the commenter's name.
parameter
Two template tags only accept one parameter:
-
$comment_ID
(optional - integer) :The ID of the comment to use.
(Default: ID of current comment)
usage
<?php // Display the commenter's name. comment_author(); // Build an introduction of each comment. $comment_intro = get_comment_author() . __( ' says...', 'translation-domain' ); ?>
Get and display the feed's comment author name: get_comment_author_rss()
& comment_author_rss()
These template tags return or echo the name of the comment author and prepare it for display on the feed.
parameter
These template tags do not accept any parameters.
usage
<?php comment_author_rss(); ?>
Get and display the email address of the comment author: get_comment_author_email()
& comment_author_email()
These template tags allow you to return or echo the commenter's email address. (Warning: It's not cool to display the commenter's email address to the public on the front end, so make sure you use it correctly.)
parameter
Two template tags only accept one parameter:
-
$comment_ID
(optional - integer) :The ID of the comment to use.
(Default: ID of current comment)
usage
<?php // Get the email address of the commenter. comment_author_email(); // Return the email address of the commenter from a specific comment. $commenter_email = get_comment_author_email( 57 ); ?>
Get and display the link to the comment author's email address: get_comment_author_email_link()
& comment_author_email_link()
These template tags allow you to return or echo the commenter's email address in the form of a mailto:
link.
parameter
Both template tags accept three parameters:
-
$linktext
(optional - string) :Text to display instead of the email address of the comment author.
(default: email address)
-
$before
(optional - string) :Text or HTML code to display before output.
(default: empty)
-
$after
(optional - string) :Text or HTML code to be displayed after output.
(default: empty)
usage
<?php // Get the email link of the commenter. comment_author_email_link(); // Return the email link of the commenter. $commenter_email_link = get_comment_author_email_link( '<i class="icon-email"></i>', __( 'Comment Author\'s Email Address', 'translation-domain' ), '<br />' ); ?>
Get and display the commenter's URL: get_comment_author_url()
& comment_author_url()
These template tags allow you to return or display the URL of the review author's website.
parameter
Two template tags only accept one parameter:
-
$comment_ID
(optional - integer) :The ID of the comment to use.
(Default: ID of current comment)
usage
<?php // Display the comment author url. comment_author_url(); // Return the comment author url. $commenter_URL = get_comment_author_url(); // Return a link to the comment author's website from a specific comment. $commenter_link = '<a href="' . get_comment_author_url( 988 ) . '">' . __( 'Comment Author\'s Website', 'translation-domain' ) . '</a>'; ?>
Get and display the commenter's link (with the author's name as anchor text): get_comment_author_link()
& comment_author_link()
These template tags get or echo the commenter's website link and use the commenter's name as anchor text.
parameter
Two template tags only accept one parameter:
-
$comment_ID
(optional - integer) :The ID of the comment to use.
(Default: ID of current comment)
usage
<?php // Display the comment author's link. comment_author_link(); // Return the comment author's link from a specific comment. $commenter_link = get_comment_author_link( 452 ); ?>
Get and display the commenter's link (using custom text): get_comment_author_url_link()
& comment_author_url_link()
These template tags allow you to get or echo a link to the commenter's website, anchored with custom text.
parameter
Both template tags accept three parameters:
-
$linktext
(optional - string) :The text to be displayed.
(Default: URL)
-
$before
(optional - string) :Text or HTML code to display before output.
(default: empty)
-
$after
(optional - string) :Text or HTML code to be displayed after output.
(default: empty)
usage
<?php // Display a customized "commenter's website" link. comment_author_url_link( __( 'Comment author\'s website', 'translation-domain' ) ); // Return a customized "commenter's website" link with $before and $after. $comment_author_website = get_comment_author_url_link( __( 'Comment author\'s website', 'translation-domain' ), '<span class="icon-website">', '</span>' ); ?>
Get and display the commenter’s IP address: get_comment_author_IP()
& comment_author_IP()
These template tags return or display the IP address of the comment author.
parameter
Two template tags only accept one parameter:
-
$comment_ID
(optional - integer) :The ID of the comment to use.
(默认:当前评论的 ID)
用法
<?php // Display the comment author's IP. comment_author_IP(); // Display the comment author's IP from a specific comment. $commenter_IP = get_comment_author_IP( 41 ); ?>
获取并显示评论内容: get_comment_text()
& comment_text()
这些模板标签获取并显示评论的内容。
参数
两个模板标签只接受一个参数:
-
$comment_ID
(可选 - 整数):要使用的评论的 ID。
(默认:当前评论的 ID)
用法
<?php // Display the current comment's content. comment_text(); // Get a specific comment's content. $comment_content = get_comment_text( 965 ); ?>
显示 Feed 的评论内容:comment_text_rss()
此模板标记获取评论内容并使其准备好在提要中显示。
参数
此模板标记不接受任何参数。
用法
<?php comment_text_rss(); ?>
获取并显示评论摘录: get_comment_excerpt()
& comment_excerpt()
这些模板标签获取评论的内容并将其剪切以显示其“摘录”。
参数
两个模板标签只接受一个参数:
-
$comment_ID
(可选 - 整数):要使用的评论的 ID。
(默认:当前评论的 ID)
用法
<?php // Echo the current comment's excerpt. comment_excerpt(); // Return a given comment's excerpt. $comment_excerpt = get_comment_excerpt( 355 ); ?>
获取并显示评论日期:get_comment_date()
& comment_date()
这些模板标记回显或返回发布评论的日期。
参数
两个模板标签都接受两个参数:
-
$date_format
(可选—字符串):日期的格式。
(默认:常规选项中设置的日期格式页)
-
$comment_ID
(可选 - 整数):要使用的评论的 ID。
(默认:当前评论的 ID)
用法
<?php // Display the current comment's date. comment_date(); // Get a specific comment's date with a special date format. $some_comment_date = get_comment_date( 'MM/DD/YYYY', 9812 ); ?>
获取并显示评论时间:get_comment_time()
& comment_time()
这些模板标签返回或回显评论发布的时间。
参数
get_comment_time()
接受三个参数:
-
$time_format
(可选—字符串):时间的格式。
(默认:常规选项中设置的时间格式页)
-
$gmt
(可选 - 布尔值):是否使用 GMT 日期。
(默认:
FALSE
) EM> -
$translate
(可选—布尔值):是否传递给
date_i18n()
函数来翻译日期。(默认:
TRUE
)
而 comment_time()
只接受一个参数:
-
$time_format
(可选—字符串):时间的格式。
(默认:常规选项中设置的时间格式页)
用法
<?php // Display the current comment's time. comment_time(); // Get a specific comment's time with a special time format. $some_comment_time = get_comment_time( 'H:i:s', 115 ); ?>
获取并显示评论 ID:get_comment_ID()
& comment_ID()
这些模板标签的工作非常简单:它们获取评论的 ID。
参数
这些模板标记不接受任何参数。
用法
<?php comment_ID(); ?>
显示评论的类型:comment_type()
此模板标记可让您显示评论的类型 - 普通评论、引用通告或 pingback。
参数
此模板标记接受三个参数:
-
$commenttxt
(可选—字符串):“评论”类型显示的文本。
(默认:“评论”)
-
$trackbacktxt
(可选—字符串):为“引用引用”类型显示的文本。
(默认:“引用引用”)
-
$pingbacktxt
(可选 — 字符串):显示“pingback”类型的文本。
(默认:“Pingback”)
用法
<?php // Display comment type with default texts. comment_type(); // Display comment type with custom texts. comment_type( __( 'Reaction', 'translation-domain' ), __( 'Trackback', 'translation-domain' ), __( 'Ping', 'translation-domain' ) ); ?>
获取用户头像:get_avatar()
此模板标签可让您获取用户的“头像”。
参数
此模板标记接受四个参数:
-
$id_or_email
(必需 — 字符串、整数或对象):用户 ID、电子邮件地址或评论对象。
(默认值:
NULL
) -
$size
(可选 - 整数):头像的大小(以像素为单位)。
(默认:96) >
-
$default
(可选 - 字符串):自定义“默认图像”的 URL(如果没有可用的头像)。
(默认值:空)
-
$alt
(可选—字符串):图像的替代文本(
alt
参数)。(默认:
FALSE
)
用法
<?php // Returns current comment author's avatar. $commenter_email = get_comment_author_email(); $commenter_avatar = get_avatar( $commenter_email, 512 ); ?>
结论
希望您喜欢第三批模板标签。还有五个批次要进行,请继续关注更多模板标签!
If you have any questions, comments, or corrections, you can share your thoughts with us in the comments section. If you liked this article, don’t forget to share it with your friends!
The above is the detailed content of Tuts+ Guide to the Third Batch of Template Tags. For more information, please follow other related articles on the PHP Chinese website!

本教程向您展示了如何在Windows的Chrome或Edge中找到所有打开的标签页上的特定文本或短语。有没有办法在Chrome中所有打开的标签页上进行文本搜索?是的,您可以使用Chrome中的免费外部Web扩展在所有打开的标签上执行文本搜索,无需手动切换标签。一些扩展如TabSearch和Ctrl-FPlus可以帮助您轻松实现这一功能。如何在GoogleChrome的所有选项卡中搜索文本?Ctrl-FPlus是一个免费的扩展,它方便用户在浏览器窗口的所有选项卡中搜索特定的单词、短语或文本。这个扩

抖音作为一款备受欢迎的短视频社交平台,拥有着庞大的用户群体。对于抖音创作者来说,带标签引流是一种有效提升内容曝光度和吸引关注的方法。那么,抖音怎么带标签引流呢?本文将为您详细解答这个问题,并介绍相关技巧。一、抖音怎么带标签引流?发布视频时,要确保选择与内容相关的标签。这些标签应涵盖视频的主题和关键词,以便让用户通过标签更容易找到您的视频。利用流行标签是增加视频曝光的有效方法。研究当前热门标签和趋势,将其巧妙地融入视频描述和标签中。这些热门标签通常具有更高的曝光度,能够吸引更多观众的关注。3.标签

在浏览抖音作品时,我们经常能看到标签后面有一个时钟图标。那么,这个时钟到底是什么呢?本文将围绕“抖音标签后面的时钟是什么”展开讨论,希望为您的抖音使用提供一些有益的参考。一、抖音标签后面的时钟是什么?抖音会推出一些热门话题挑战,用户参与时会在标签后看到一个时钟图标,这代表作品正在参与话题挑战,并显示挑战的剩余时间。对于一些具有时效性的内容,如节假日、特殊活动等,抖音会在标签后面附上时钟图标,提醒用户该内容的有效期限。3.热门标签:当某个标签变得热门时,抖音会在标签后面添加时钟图标,表示这个标签正

随着现代企业的发展,ERP系统的重要性也越来越凸显出来。ERP系统可以帮助企业集成和管理计划、客户关系、供应链、人力资源等方面的数据和业务流程。PHP作为一种流行的编程语言,也可以用于开发ERP系统。在本文中,我们将分享一些PHP中的ERP系统开发指南。确定ERP系统的需求在开始开发ERP系统之前,您需要确定自己的ERP系统所需要的功能。根据你的企业的运营方

PHP作为一种广泛使用的服务器端语言,在许多Web应用程序中扮演着重要的角色。音频处理是一个很常见的需求,例如音乐网站和音频产品销售网站等。在本文中,将为读者介绍如何在PHP中操作音频文件。一、了解音频格式在PHP中操作音频文件前,需要先了解音频文件格式。常见的音频格式有MP3、WAV、OGG、FLAC等。不同的格式有不同的音频编码算法和数据格式。例如,MP

钉钉app外部联系人标签怎么删除?钉钉中是可以删除外部联系人标签的功能,但是多数小伙伴不知道钉钉外部联系人标签如何的删除,接下来就是小编为用户带来的钉钉app外部联系人标签删除方法图文教程,感兴趣的用户快来一起看看吧!钉钉app外部联系人标签怎么删除1、首先打开钉钉APP,主页面中点击如下图所示的【管理】功能;2、然后进入到企业管理的界面,找到其中的【外部联系人】;3、接着在外部联系人设置功能页,选择【标签管理】服务;4、之后在联系人标签主页面,选择你需要删除的标签组类型;5、最后点击标签组红色

区别:1、head标签用于定义文档头部,它是所有头部元素的容器,而header标签用于定义文档的页眉(介绍信息);2、浏览器都支持head标签,而旧版本浏览器均不支持header标签,需要IE9+以上浏览器才支持header标签。

HTML中video视频标签详解HTML5中的video标签是一种用于在网页上播放视频的标签。它可以使用不同的格式来呈现视频,例如MP4、WebM、Ogg等等。在本篇文章中,我们将详细介绍video标签的使用方法,并提供具体的代码示例。基本结构下面是video标签的基本结构:


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1
Easy-to-use and free code editor

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
