'widget_comicpress_latest_thumbnail', 'description' => 'Display a thumbnail of the latest comic, clickable to go to the comic post.' ); $this->WP_Widget('latest_thumbnail', 'Latest Comic', $widget_ops); } function widget($args, $instance) { global $post; extract($args, EXTR_SKIP); echo $before_widget; $title = empty($instance['title']) ? 'Latest Comic' : 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()); foreach($latestcomics as $post) : ?>
<?php the_title() ?>
'' ) ); $title = strip_tags($instance['title']); ?>