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 |
---|---|
36 | } else { |
37 |
|
38 | /** |
39 | * Filters the post formats rewrite base. |
40 | * |
41 | * @since 3.1.0 |
42 | * |
43 | * @param string $context Context of the rewrite base. Default 'type'. |
44 | */ |
45 | $post_format_base = apply_filters( 'post_format_rewrite_base', 'type' ); |
46 | $rewrite = array( |
47 | 'category' => array( |
48 | 'hierarchical' => true, |
49 | 'slug' => get_option( 'category_base' ) ? get_option( 'category_base' ) : 'category', |
50 | 'with_front' => ! get_option( 'category_base' ) || $wp_rewrite->using_index_permalinks(), |
51 | 'ep_mask' => EP_CATEGORIES, |
52 | ), |
53 | 'post_tag' => array( |
54 | 'hierarchical' => false, |