返回介绍

get_comment_date()

发布于 2017-09-10 23:06:02 字数 4025 浏览 1309 评论 0 收藏 0

get_comment_date( string $d = '',  int|WP_Comment $comment_ID )

Retrieve the comment date of the current comment.


description


参数

$d

(string) (Optional) The format of the date. Default user's setting.

Default value: ''

$comment_ID

(int|WP_Comment) (Optional) WP_Comment or ID of the comment for which to get the date. Default current comment.


返回值

(string) The comment's date.


源代码

File: wp-includes/comment-template.php

function get_comment_date( $d = '', $comment_ID = 0 ) {
	$comment = get_comment( $comment_ID );
	if ( '' == $d )
		$date = mysql2date(get_option('date_format'), $comment->comment_date);
	else
		$date = mysql2date($d, $comment->comment_date);
	/**
	 * Filters the returned comment date.
	 *
	 * @since 1.5.0
	 *
	 * @param string|int $date    Formatted date string or Unix timestamp.
	 * @param string     $d       The format of the date.
	 * @param WP_Comment $comment The comment object.
	 */
	return apply_filters( 'get_comment_date', $date, $d, $comment );
}

更新日志

Versiondescription
4.4.0Added the ability for $comment_ID to also accept a WP_Comment object.
1.5.0Introduced.

相关函数

Uses

  • wp-includes/functions.php: mysql2date()
  • wp-includes/plugin.php: apply_filters()
  • wp-includes/option.php: get_option()
  • wp-includes/comment-template.php: get_comment_date
  • wp-includes/comment.php: get_comment()

Used By

  • wp-admin/includes/class-wp-comments-list-table.php: WP_Comments_List_Table::column_date()
  • wp-includes/class-walker-comment.php: Walker_Comment::comment()
  • wp-includes/class-walker-comment.php: Walker_Comment::html5_comment()
  • wp-includes/comment-template.php: comment_date()

User Contributed Notes

  1. Skip to note content You must log in to vote on the helpfulness of this noteVote results for this note: 1You must log in to vote on the helpfulness of this note Contributed by Codex

    Basic Example

    
    $d = "l, F jS, Y";
    $comment_date = get_comment_date( $d, $comment_ID );
    echo $comment_date;
    
    // This will output something similar to "Saturday, November 6th, 2010". 
    
  2. Examples of Different Date Formats

    
    // Prints something like: Monday 8th of August 2005
    echo get_comment_date( 'l jS \of F Y' );
    
    // Prints something like: Mon Mar 8 2012
    echo get_comment_date( 'D M j Y' );
    
    // Prints something like 07/08/2017 (dd/mm/yyyy)
    echo get_comment_date( 'd\/m\/Y' );
    

    Display a beautiful, human-readable, comment time:

    
    function smk_get_comment_time( $comment_id = 0 ){
    	return sprintf( 
    		_x( '%s ago', 'Human-readable time', 'text-domain' ), 
    		human_time_diff( 
    			get_comment_date( 'U', $comment_id ), 
    			current_time( 'timestamp' ) 
    		) 
    	);
    }
    

    When called it will convert the time and return something like:

    "1 min ago", "3 mins ago", "17 hours ago", "7 days ago", "2 weeks ago", etc....

    Use this function because it’s more user friendly.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文