Filters the custom taxonomy archive page title.
$term_namestringwp-includes/general-template.php:1638single_term_title() * Filters the custom taxonomy archive page title. * * @since 3.1.0 * * @param string $term_name Term name for archive being displayed. */ $term_name = apply_filters( 'single_term_title', $term->name ); } else { return null; } if ( empty( $term_name ) ) { return null;Introduced in 3.1.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.