WP_Rewrite::get_day_permastruct()publicWP 1.5.0

Retrieves the day permalink structure with month and year.

Keeps date permalink structure with all year, month, and day.

Method of the class: WP_Rewrite{}

No Hooks.

Return

String|false. Year/Month/Day permalink structure on success, false on failure.

Usage

global $wp_rewrite;
$wp_rewrite->get_day_permastruct();

Changelog

Since 1.5.0 Introduced.

WP_Rewrite::get_day_permastruct() code WP 6.5.2

public function get_day_permastruct() {
	return $this->get_date_permastruct();
}