Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: post_rewrite_rules

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1509           // Registration rules
1510           $registration_pages = array();
1511           if ( is_multisite() && is_main_site() ) {
1512                $registration_pages['.*wp-signup.php$'] = $this->index . '?signup=true';
1513                $registration_pages['.*wp-activate.php$'] = $this->index . '?activate=true';
1514           }
1515
1516           // Post
1517           $post_rewrite = $this->generate_rewrite_rules($this->permalink_structure, EP_PERMALINK);
1518           $post_rewrite = apply_filters('post_rewrite_rules', $post_rewrite);
1519
1520           // Date
1521           $date_rewrite = $this->generate_rewrite_rules($this->get_date_permastruct(), EP_DATE);
1522           $date_rewrite = apply_filters('date_rewrite_rules', $date_rewrite);
1523
1524           // Root
1525           $root_rewrite = $this->generate_rewrite_rules($this->root . '/', EP_ROOT);
1526           $root_rewrite = apply_filters('root_rewrite_rules', $root_rewrite);
1527