2009-08-21 19:29:45 +00:00
< ? php
/*
Widget Name : Latest Thumbnail
Widget URI : http :// comicpress . org /
Description : Display a thumbnail of the latest comic .
Author : Philip M . Hofer ( Frumph )
Version : 1.01
Author URI : http :// webcomicplanet . com /
*/
class widget_comicpress_latest_thumbnail extends WP_Widget {
function widget_comicpress_latest_thumbnail () {
2009-10-05 06:08:01 +00:00
$widget_ops = array ( 'classname' => 'widget_comicpress_latest_thumbnail' , 'description' => __ ( 'Display a thumbnail of the latest comic, clickable to go to the comic post.' , 'comicpress' ) );
$this -> WP_Widget ( 'latest_thumbnail' , __ ( 'Latest Comic' , 'comicpress' ), $widget_ops );
2009-08-21 19:29:45 +00:00
}
function widget ( $args , $instance ) {
global $post ;
2009-08-26 08:22:29 +00:00
if ( is_home ()) {
extract ( $args , EXTR_SKIP );
echo $before_widget ;
2009-10-05 06:08:01 +00:00
$title = empty ( $instance [ 'title' ]) ? __ ( 'Latest Comic' , 'comicpress' ) : apply_filters ( 'widget_title' , $instance [ 'title' ]);
2009-08-26 08:22:29 +00:00
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 ) : ?>
< center >
< a href = " <?php the_permalink(); ?> " >< img src = " <?php the_comic_rss() ?> " alt = " <?php the_title() ?> " title = " <?php the_hovertext() ?> " /></ a >< br />
</ center >
< ? php endforeach ;
echo $after_widget ;
}
2009-08-21 19:29:45 +00:00
}
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' ]);
?>
2009-10-05 06:08:01 +00:00
< p >< label for = " <?php echo $this->get_field_id ('title'); ?> " >< ? php _e ( 'Title:' , 'comicpress' ); ?> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo attribute_escape($title); ?>" /></label></p>
2009-08-21 19:29:45 +00:00
< ? php
}
}
register_widget ( 'widget_comicpress_latest_thumbnail' );
function widget_comicpress_latest_thumbnail_init () {
new widget_comicpress_latest_thumbnail ();
}
add_action ( 'widgets_init' , 'widget_comicpress_latest_thumbnail_init' );
2009-08-21 17:45:23 +00:00
?>