WP_Rewrite::get_month_permastruct

Advertisement

Summery Summery

Retrieves the month permalink structure without day and with year.

Syntax Syntax

WP_Rewrite::get_month_permastruct()

Description Description

Gets the date permalink structure and strips out the day permalink structures. Keeps the year permalink structure.

Return Return

(string|false) Year/Month permalink structure on success, false on failure.

Source Source

File: wp-includes/class-wp-rewrite.php

	public function get_month_permastruct() {
		$structure = $this->get_date_permastruct();

		if ( empty( $structure ) ) {
			return false;
		}

		$structure = str_replace( '%day%', '', $structure );
		$structure = preg_replace( '#/+#', '/', $structure );

		return $structure;
	}

Advertisement

Changelog Changelog

Changelog
Version Description
1.5.0 Introduced.

Advertisement

Leave a Reply