'widget_comicpress_bookmark', 'description' => __('Creates a set of buttons that let the user return to the page they tagged.','comicpress') );
$this->WP_Widget('comicpress_bookmark', __('ComicPress Bookmark','comicpress'), $widget_ops);
}
function widget($args, $instance) {
global $post, $wp_query;
if (is_home() || is_single()) {
extract($args, EXTR_SKIP);
echo $before_widget;
$title = empty($instance['title']) ? '' : apply_filters('widget_title', $instance['title']);
if ( !empty( $title ) ) { echo $before_title . $title . $after_title; };
comicpress_comic_bookmark();
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']);
?>