post_format_rewrite_base filter-hook . WP 3.1.0
Filters the post formats rewrite base.
Usage
add_filter( 'post_format_rewrite_base', 'filter_function_name_2353' ); function filter_function_name_2353( $context ){ // filter... return $context; }
- $context(string)
- Context of the rewrite base.
Default: 'type'
Where the hook is called
post_format_rewrite_base
wp-includes/taxonomy.php 42
$post_format_base = apply_filters( 'post_format_rewrite_base', 'type' );