WordPress Version: 3.7
/**
* Retrieve the permalink for the day archives with year and month.
*
* @since 1.0.0
*
* @param bool|int $year False for current year. Integer of year.
* @param bool|int $month False for current month. Integer of month.
* @param bool|int $day False for current day. Integer of day.
* @return string
*/
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);
return apply_filters('day_link', home_url(user_trailingslashit($daylink, 'day')), $year, $month, $day);
} else {
return apply_filters('day_link', home_url('?m=' . $year . zeroise($month, 2) . zeroise($day, 2)), $year, $month, $day);
}
}