ID, 'practical-title-bar', true );
if ( ! $title_bar) { $title_bar = 'default'; }
if ( $title_bar == 'default' ) :
if ( '' != get_the_archive_title() && 1 == get_theme_mod( 'practical_header_title_bar', 1 ) ) :
get_template_part( '/template-parts/title-bar' );
endif;
elseif ( $title_bar == 'show' ) :
get_template_part( '/template-parts/title-bar' );
endif;
?>
ID, 'practical-author-info', true );
if( ! $author_info) { $author_info = 'default'; }
if( $author_info == 'default' ) :
if ( 0 != get_theme_mod( 'practical_single_post_author_info', 0 ) ) :
get_template_part( 'template-parts/author-info' );
endif;
elseif( $author_info == 'show' ) :
get_template_part( 'template-parts/author-info' );
endif;
?>