%s ', __('Posts tagged ', 'sunny-and-blue'))); ?>

get_queried_object(); echo "" . $tag->count . __(' results', 'sunny-and-blue') ."
"; while (have_posts()) : the_post(); echo '

'; the_title(); echo ''; echo "

"; echo '
'; _e('By ', 'sunny-and-blue'); the_author_posts_link(); _e(' on ', 'sunny-and-blue'); the_date(get_option('date_format')); _e(' at ', 'sunny-and-blue'); the_time(get_option('time_format')); echo '
'; //If it's a comic if ($post->post_type == 'comic') { do_action('comic-post-info'); if (has_post_thumbnail()) { // check if the post has a Post Thumbnail assigned to it. echo ''; the_post_thumbnail('medium'); echo '
'; } //Display sharing only for comic, regular blog content has sharing already built in. if (function_exists('sharing_display')) { $switched_status = get_post_meta($post->ID, 'sharing_disabled', false); if (empty($switched_status)) echo sharing_display(); } } // else regular blog post else { the_excerpt(); } the_tags(_e('Tags', 'sunny-and-blue').': ', ', ', '
'); endwhile; endif; ?>