'widget_comicpress_comic_blog_post', 'description' => 'Displays the comic blog post, ..used to be around the comic areas.' ); $this->WP_Widget('comic_blog_post', 'Comic Blog Post', $widget_ops); } function widget($args, $instance) { global $post, $wp_query; if (is_home() || is_single()) { extract($args, EXTR_SKIP); if (!empty($post->post_content)) { echo $before_widget; $title = empty($instance['title']) ? '' : apply_filters('widget_title', $instance['title']); if ( !empty( $title ) ) { echo '
'.$title.'
'; } display_comic_post(); echo $after_widget; } } } function update($new_instance, $old_instance) { $instance = $old_instance; $instance['title'] = strip_tags($new_instance['title']); return $instance; } function form($instance) { $instance = wp_parse_args( (array) $instance, array( 'title' => '' ) ); $title = strip_tags($instance['title']); ?>