返回介绍

get_month_link()

发布于 2017-09-10 23:34:29 字数 4333 浏览 1069 评论 0 收藏 0

get_month_link( bool|int $year,  bool|int $month )

Retrieves the permalink for the month archives with year.


description


参数

$year

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

$month

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


返回值

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


源代码

File: wp-includes/link-template.php

function get_month_link($year, $month) {
	global $wp_rewrite;
	if ( !$year )
		$year = gmdate('Y', current_time('timestamp'));
	if ( !$month )
		$month = gmdate('m', current_time('timestamp'));
	$monthlink = $wp_rewrite->get_month_permastruct();
	if ( !empty($monthlink) ) {
		$monthlink = str_replace('%year%', $year, $monthlink);
		$monthlink = str_replace('%monthnum%', zeroise(intval($month), 2), $monthlink);
		$monthlink = home_url( user_trailingslashit( $monthlink, 'month' ) );
	} else {
		$monthlink = home_url( '?m=' . $year . zeroise( $month, 2 ) );
	}

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

更新日志

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: month_link
  • wp-includes/link-template.php: user_trailingslashit()
  • wp-includes/plugin.php: apply_filters()
  • wp-includes/class-wp-rewrite.php: WP_Rewrite::get_month_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

    Month Archive as Link

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

    
    <a href="<?php echo get_month_link('', ''); ?>">All posts this month</a>
    
  2. Assigning Specific Month to Variable

    Returns URL to the archive for October 2004, assigning it to the variable $oct_04. The variable can then be used elsewhere in a page.

    
    <?php $oct_04 = get_month_link('2004', '10'); ?>
    

    Use With PHP Variables

    PHP code block for use within The Loop: Assigns year and month of a post to the variables $arc_year and $arc_month. These are used with the get_month_link() tag, which returns the URL as a link to the monthly 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'); ?>
    <?php $archive_month = get_the_time('m'); ?>
    
    <a href="<?php echo get_month_link( $archive_year, $archive_month ); ?>">
    Archive for <?php the_time('F Y'); ?>
    </a>
    

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

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

发布评论

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