'; echo '
'; the_post_thumbnail('britt-above-post-thumb'); echo '
'; echo '
'; the_title( '

', '

' ); if ( 'post' === get_post_type() ) { echo '
'; britt_posted_on(); echo '
'; } echo '
'; echo ''; } } add_action('britt_featured_area', 'britt_featured_image_large', 12); /** * Featured categories */ function britt_featured_categories() { $hide = get_theme_mod('hide_featured_cats', 0); if ( $hide ) { return; } $featured_label = get_theme_mod('featured_cats_label', __('Hot topics', 'britt')); $featured_cats = array(); $featured_cats[] = get_theme_mod('featured_cat_1', get_option( 'default_category', '' )); $featured_cats[] = get_theme_mod('featured_cat_2', get_option( 'default_category', '' )); $featured_cats[] = get_theme_mod('featured_cat_3', get_option( 'default_category', '' )); echo ''; } add_action('britt_featured_area', 'britt_featured_categories', 11); /** * Remove archive labels */ function britt_archive_labels($title) { if ( is_category() ) { $title = single_cat_title( '', false ); } elseif ( is_tag() ) { $title = single_tag_title( '', false ); } elseif ( is_author() ) { $title = '' . get_the_author() . '' ; } return $title; } add_filter( 'get_the_archive_title', 'britt_archive_labels'); /** * Logo */ function britt_custom_logo() { if ( function_exists( 'the_custom_logo' ) ) { the_custom_logo(); } }