返回介绍

get_day_link()

发布于 2017-09-10 23:14:05 字数 4429 浏览 957 评论 0 收藏 0

get_day_link( bool|int $year,  bool|int $month,  bool|int $day )

Retrieves the permalink for the day archives with year and month.


description


参数

$year

(bool|int) (Required) False for current year. Integer of year.

$month

(bool|int) (Required) False for current month. Integer of month.

$day

(bool|int) (Required) False for current day. Integer of day.


返回值

(string) The permalink for the specified day, month, and year archive.


源代码

File: wp-includes/link-template.php

function get_day_link($year, $month, $day) {
	global $wp_rewrite;
	if ( !$year )
		$year = gmdate('Y', current_time('timestamp'));
	if ( !$month )
		$month = gmdate('m', current_time('timestamp'));
	if ( !$day )
		$day = gmdate('j', current_time('timestamp'));

	$daylink = $wp_rewrite->get_day_permastruct();
	if ( !empty($daylink) ) {
		$daylink = str_replace('%year%', $year, $daylink);
		$daylink = str_replace('%monthnum%', zeroise(intval($month), 2), $daylink);
		$daylink = str_replace('%day%', zeroise(intval($day), 2), $daylink);
		$daylink = home_url( user_trailingslashit( $daylink, 'day' ) );
	} else {
		$daylink = home_url( '?m=' . $year . zeroise( $month, 2 ) . zeroise( $day, 2 ) );
	}

	/**
	 * Filters the day archive permalink.
	 *
	 * @since 1.5.0
	 *
	 * @param string $daylink Permalink for the day archive.
	 * @param int    $year    Year for the archive.
	 * @param int    $month   Month for the archive.
	 * @param int    $day     The day for the archive.
	 */
	return apply_filters( 'day_link', $daylink, $year, $month, $day );
}

更新日志

Versiondescription
1.0.0Introduced.

相关函数

Uses

  • wp-includes/formatting.php: zeroise()
  • wp-includes/functions.php: current_time()
  • wp-includes/link-template.php: home_url()
  • wp-includes/link-template.php: day_link
  • wp-includes/link-template.php: user_trailingslashit()
  • wp-includes/plugin.php: apply_filters()
  • wp-includes/class-wp-rewrite.php: WP_Rewrite::get_day_permastruct()
  • Show 2 more uses Hide more uses

Used By

  • wp-includes/general-template.php: wp_get_archives()
  • wp-includes/general-template.php: get_calendar()
  • wp-includes/canonical.php: redirect_canonical()

User Contributed Notes

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

    Current Day as Link

    Returns the URL to the current day’s archive as a link by displaying it within an anchor tag with the PHP echo command.

    
    <a href="<?php echo esc_url( get_day_link( false, false, false ) ); ?>"><?php _e( 'Today’s posts', 'textdomain' ); ?></a>
    
  2. Use With Variables

    PHP code block for use within The Loop: Assigns year, month and day of a post to the variables $arc_year, $arc_month and $arc_day. These are used with the get_day_link() tag, which returns the URL as a link to the daily archive for that post, displaying it within an anchor tag with the PHP echo command. See Formatting Date and Time for info on format strings used in get_the_time() tag.

    
    <?php 
    $archive_year  = get_the_time( 'Y' ); 
    $archive_month = get_the_time( 'm' ); 
    $archive_day   = get_the_time( 'd' ); 
    ?>
    <a href="<?php echo esc_url( get_day_link( $archive_year, $archive_month, $archive_day ) ); ?>">
    	<?php _e( 'This day’s posts', 'textdomain' ); ?>
    </a>
    

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

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

发布评论

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