Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: date_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
1297           /**
1298            * Filters rewrite rules used for date archives.
1299            *
1300            * Likely date archives would include /yyyy/, /yyyy/mm/, and /yyyy/mm/dd/.
1301            *
1302            * @since 1.5.0
1303            *
1304            * @param array $date_rewrite The rewrite rules for date archives.
1305            */
1306           $date_rewrite = apply_filters( 'date_rewrite_rules', $date_rewrite );
1307
1308           // Root-level rewrite rules.
1309           $root_rewrite = $this->generate_rewrite_rules( $this->root . '/', EP_ROOT );
1310
1311           /**
1312            * Filters rewrite rules used for root-level archives.
1313            *
1314            * Likely root-level archives would include pagination rules for the homepage
1315            * as well as site-wide post feeds (e.g. /feed/, and /feed/atom/).