__CLASS__, 'description' => __('Display a thumbnail of the latest comic, clickable to go to the comic post.','comicpress') ); $this->WP_Widget(__CLASS__, __('ComicPress Latest Thumbnail','comicpress'), $widget_ops); } } function widget($args, $instance) { global $post; if (is_home()) { extract($args, EXTR_SKIP); echo $before_widget; $title = empty($instance['title']) ? __('Latest Comic','comicpress') : apply_filters('widget_title', $instance['title']); if ( !empty( $title ) ) { echo $before_title . $title . $after_title; }; $latestcomics = get_posts('numberposts=1&category='.get_all_comic_categories_as_cat_string()); $archive_image = null; foreach($latestcomics as $post) : foreach (array("archive", "rss", "mini", "comic") as $type) { if (($requested_archive_image = get_comic_url($type, $post)) !== false) { $archive_image = $requested_archive_image; break; } } ?>
<?php the_title() ?> - <?php the_date(); ?>
'' ) ); $title = strip_tags($instance['title']); ?>