WP_Rewrite::page_rewrite_rules
Retrieves all of the rewrite rules for pages.
Method of the class: WP_Rewrite{}
No Hooks.
Returns
String[]. Page rewrite rules.
Usage
global $wp_rewrite; $wp_rewrite->page_rewrite_rules();
Changelog
| Since 1.5.0 | Introduced. |
WP_Rewrite::page_rewrite_rules() WP Rewrite::page rewrite rules code WP 6.9
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 );
}