WP_Rewrite::page_rewrite_rules()

Retrieves all of the rewrite rules for pages.


Description Description


Return Return

(array) Page rewrite rules.


Top ↑

Source Source

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

	public function page_rewrite_rules() {
		// The extra .? at the beginning prevents clashes with other regular expressions in the rules array.
		$this->add_rewrite_tag( '%pagename%', '(.?.+?)', 'pagename=' );

		return $this->generate_rewrite_rules( $this->get_page_permastruct(), EP_PAGES, true, true, false, false );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
1.5.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.