WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 29 | } else { |
| 30 | |
| 31 | /** |
| 32 | * Filters the post formats rewrite base. |
| 33 | * |
| 34 | * @since 3.1.0 |
| 35 | * |
| 36 | * @param string $context Context of the rewrite base. Default 'type'. |
| 37 | */ |
| 38 | $post_format_base = apply_filters( 'post_format_rewrite_base', 'type' ); |
| 39 | $rewrite = array( |
| 40 | 'category' => array( |
| 41 | 'hierarchical' => true, |
| 42 | 'slug' => get_option('category_base') ? get_option('category_base') : 'category', |
| 43 | 'with_front' => ! get_option('category_base') || $wp_rewrite->using_index_permalinks(), |
| 44 | 'ep_mask' => EP_CATEGORIES, |
| 45 | ), |
| 46 | 'post_tag' => array( |
| 47 | 'hierarchical' => false, |