51 lines
1.7 KiB
PHP
51 lines
1.7 KiB
PHP
<?php
|
|
/*
|
|
Widget Name: Comic Blog Post Widget
|
|
Widget URI: http://comicpress.org/
|
|
Description: Display's the comic's blog post.
|
|
Author: Philip M. Hofer (Frumph)
|
|
Version: 1.05
|
|
Author URI: http://frumph.net/
|
|
|
|
*/
|
|
|
|
class ComicPressComicBlogPostWidget extends WP_Widget {
|
|
|
|
function ComicPressComicBlogPostWidget($skip_widget_init = false) {
|
|
if (!$skip_widget_init) {
|
|
$widget_ops = array('classname' => __CLASS__, 'description' => __('Displays the comic blog post, ..used to be around the comic areas.','comicpress') );
|
|
$this->WP_Widget(__CLASS__, __('ComicPress Comic Blog Post','comicpress'), $widget_ops);
|
|
}
|
|
}
|
|
|
|
function widget($args, $instance) {
|
|
global $post, $wp_query;
|
|
if ((is_home() || is_single()) && in_comic_category()) {
|
|
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 '<div class="heading">'.$title.'</div>'; }
|
|
echo $post->post_content;
|
|
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']);
|
|
?>
|
|
<p><label for="<?php echo $this->get_field_id('title'); ?>">Heading:<br /><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>
|
|
|
|
<?php
|
|
}
|
|
}
|
|
|
|
?>
|