pre_(taxonomy)_(field) filter-hookWP 2.3.0

Filters a taxonomy field before it is sanitized.

The dynamic portions of the filter name, $taxonomy and $field, refer to the taxonomy slug and field name, respectively.

Usage

add_filter( 'pre_(taxonomy)_(field)', 'wp_kama_pre_taxonomy_field_filter' );

/**
 * Function for `pre_(taxonomy)_(field)` filter-hook.
 * 
 * @param mixed $value Value of the taxonomy field.
 *
 * @return mixed
 */
function wp_kama_pre_taxonomy_field_filter( $value ){

	// filter...
	return $value;
}
$value(mixed)
Value of the taxonomy field.

Changelog

Since 2.3.0 Introduced.

Where the hook is called

sanitize_term_field()
pre_(taxonomy)_(field)
wp-includes/taxonomy.php 1828
$value = apply_filters( "pre_{$taxonomy}_{$field}", $value );

Where the hook is used in WordPress

wp-admin/includes/ajax-actions.php 1345
remove_filter( 'pre_comment_content', 'wp_filter_post_kses' );
wp-admin/includes/ajax-actions.php 1346
add_filter( 'pre_comment_content', 'wp_filter_kses' );
wp-admin/includes/bookmark.php 338
add_filter( 'pre_option_link_manager_enabled', '__return_true', 100 );
wp-admin/includes/bookmark.php 340
remove_filter( 'pre_option_link_manager_enabled', '__return_true', 100 );
wp-admin/options-discussion.php 328
add_filter( 'pre_option_show_avatars', '__return_true', 100 );
wp-admin/options-discussion.php 338
remove_filter( 'pre_option_show_avatars', '__return_true', 100 );
wp-includes/block-supports/settings.php 152
add_filter( 'pre_render_block', '_wp_add_block_level_preset_styles', 10, 2 );
wp-includes/block-template.php 16
add_action( 'pre_get_posts', '_resolve_template_for_new_post' );
wp-includes/block-template.php 342
remove_filter( 'pre_get_posts', '_resolve_template_for_new_post' );
wp-includes/blocks/site-logo.php 155
add_filter( 'pre_set_theme_mod_custom_logo', '_sync_custom_logo_to_site_logo' );
wp-includes/class-wp-customize-manager.php 690
add_filter( 'pre_option_current_theme', array( $this, 'current_theme' ) );
wp-includes/class-wp-customize-manager.php 693
add_filter( 'pre_option_stylesheet', array( $this, 'get_stylesheet' ) );
wp-includes/class-wp-customize-manager.php 694
add_filter( 'pre_option_template', array( $this, 'get_template' ) );
wp-includes/class-wp-customize-manager.php 697
add_filter( 'pre_option_stylesheet_root', array( $this, 'get_stylesheet_root' ) );
wp-includes/class-wp-customize-manager.php 698
add_filter( 'pre_option_template_root', array( $this, 'get_template_root' ) );
wp-includes/class-wp-customize-manager.php 728
remove_filter( 'pre_option_current_theme', array( $this, 'current_theme' ) );
wp-includes/class-wp-customize-manager.php 731
remove_filter( 'pre_option_stylesheet', array( $this, 'get_stylesheet' ) );
wp-includes/class-wp-customize-manager.php 732
remove_filter( 'pre_option_template', array( $this, 'get_template' ) );
wp-includes/class-wp-customize-manager.php 735
remove_filter( 'pre_option_stylesheet_root', array( $this, 'get_stylesheet_root' ) );
wp-includes/class-wp-customize-manager.php 736
remove_filter( 'pre_option_template_root', array( $this, 'get_template_root' ) );
wp-includes/class-wp-customize-setting.php 379
add_filter( "pre_option_{$id_base}", array( $this, '_preview_filter' ) );
wp-includes/class-wp-customize-widgets.php 2132
add_filter( 'pre_update_option', array( $this, 'capture_filter_pre_update_option' ), 10, 3 );
wp-includes/class-wp-customize-widgets.php 2151
add_filter( "pre_option_{$option_name}", array( $this, 'capture_filter_pre_get_option' ) );
wp-includes/class-wp-customize-widgets.php 2190
remove_filter( 'pre_update_option', array( $this, 'capture_filter_pre_update_option' ), 10 );
wp-includes/class-wp-customize-widgets.php 2193
remove_filter( "pre_option_{$option_name}", array( $this, 'capture_filter_pre_get_option' ) );
wp-includes/comment.php 2538
add_filter( 'pre_comment_content', 'wp_filter_kses' );
wp-includes/comment.php 2552
remove_filter( 'pre_comment_content', 'wp_filter_kses' );
wp-includes/comment.php 3648
remove_filter( 'pre_comment_content', 'wp_filter_post_kses' );
wp-includes/comment.php 3649
add_filter( 'pre_comment_content', 'wp_filter_kses' );
wp-includes/default-filters.php 106
add_filter( 'pre_post_mime_type', 'sanitize_mime_type' );
wp-includes/default-filters.php 305
add_filter( 'pre_comment_content', 'wp_rel_ugc', 15 );
wp-includes/default-filters.php 470
add_filter( 'pre_option_gmt_offset', 'wp_timezone_override_offset' );
wp-includes/default-filters.php 476
add_filter( 'pre_option_embed_autourls', '__return_true' );
wp-includes/default-filters.php 712
add_filter( 'pre_oembed_result', 'wp_filter_pre_oembed_result', 10, 3 );
wp-includes/default-filters.php 721
add_filter( 'pre_wp_unique_post_slug', 'wp_filter_wp_template_unique_post_slug', 10, 5 );
wp-includes/default-filters.php 97
add_filter( 'pre_term_slug', 'sanitize_title' );
wp-includes/kses.php 2281
add_filter( 'pre_comment_content', 'wp_filter_post_kses' );
wp-includes/kses.php 2283
add_filter( 'pre_comment_content', 'wp_filter_kses' );
wp-includes/kses.php 2313
remove_filter( 'pre_comment_content', 'wp_filter_post_kses' );
wp-includes/kses.php 2314
remove_filter( 'pre_comment_content', 'wp_filter_kses' );