__( 'Archives', 'bazaar-lite' )) && (!bazaarlite_is_woocommerce_active('is_woocommerce')) ) : return get_the_archive_title(); endif; } } /*-----------------------------------------------------------------------------------*/ /* IS SINGLE */ /*-----------------------------------------------------------------------------------*/ if (!function_exists('bazaarlite_is_single')) { function bazaarlite_is_single() { if ( is_single() || is_page() || is_singular('portfolio') ) : return true; endif; } } /*-----------------------------------------------------------------------------------*/ /* TAG TITLE */ /*-----------------------------------------------------------------------------------*/ if ( ! function_exists( '_wp_render_title_tag' ) ) { function bazaarlite_title( $title, $sep ) { global $paged, $page; if ( is_feed() ) return $title; $title .= get_bloginfo( 'name' ); $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) $title = "$title $sep $site_description"; if ( $paged >= 2 || $page >= 2 ) $title = "$title $sep " . sprintf( __( 'Page %s', 'bazaar-lite' ), max( $paged, $page ) ); return $title; } add_filter( 'wp_title', 'bazaarlite_title', 10, 2 ); function bazaarlite_addtitle() { ?>