You appear to be a bot. Output may be restricted
Description
Hide "featured" tag from the front end.
Has to run on wp_loaded so that the preview filters of the Customizer have a chance to alter the value.
Usage
Featured_Content::wp_loaded();
Parameters
Returns
void
Source
File name: twentyfourteen/inc/featured-content.php
Lines:
1 to 6 of 6
public static function wp_loaded() { if ( self::get_setting( 'hide-tag' ) ) { add_filter( 'get_terms', array( __CLASS__, 'hide_featured_term' ), 10, 3 ); add_filter( 'get_the_terms', array( __CLASS__, 'hide_the_featured_term' ), 10, 3 ); } }