' . "\n"; echo '

'; if (is_archive()) { if (is_category() || is_tax()) { single_cat_title(); } elseif (is_tag()) { single_tag_title(); } elseif (is_author()) { global $author; $user_info = get_userdata($author); printf(_x('Articles by %s', 'post author', 'mh-magazine-lite'), esc_attr($user_info->display_name)); } elseif (is_day()) { echo get_the_date(); } elseif (is_month()) { echo get_the_date('F Y'); } elseif (is_year()) { echo get_the_date('Y'); } elseif (is_post_type_archive()) { global $post; $post_type = get_post_type_object(get_post_type($post)); echo esc_attr($post_type->labels->name); } else { _e('Archives', 'mh-magazine-lite'); } } else { if (is_home()) { echo esc_attr(get_the_title(get_option('page_for_posts', true))); } elseif (is_404()) { _e('Page not found (404)', 'mh-magazine-lite'); } elseif (is_search()) { printf(__('Search Results for %s', 'mh-magazine-lite'), esc_attr(get_search_query())); } else { the_title(); } } echo '

' . "\n"; echo '' . "\n"; } } } ?>