comic blog post widgets/comicblogpost.php
Signed-off-by: Philip M. Hofer (Frumph) <frumph_dragon@yahoo.com>
This commit is contained in:
parent
a9f19fd90e
commit
2f1ce5e04f
|
@ -121,6 +121,7 @@ require_once(get_template_directory() . '/widgets/comictitle.php');
|
|||
require_once(get_template_directory() . '/widgets/comiccomments.php');
|
||||
require_once(get_template_directory() . '/widgets/menubar.php');
|
||||
require_once(get_template_directory() . '/widgets/archive-dropdown.php');
|
||||
require_once(get_template_directory() . '/widgets/comicblogpost.php');
|
||||
|
||||
// FUNCTIONS & Extra's
|
||||
|
||||
|
|
|
@ -506,6 +506,7 @@ a.navi-comments:hover span {
|
|||
|
||||
.post, .post-comic, .post-page {
|
||||
clear: both;
|
||||
text-align: left;
|
||||
padding: 0 5px;
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,54 @@
|
|||
<?php
|
||||
/*
|
||||
Widget Name: Comic Blog Post
|
||||
Widget URI: http://comicpress.org/
|
||||
Description: Display's the comic's blog post.
|
||||
Author: Philip M. Hofer (Frumph)
|
||||
Version: 1.01
|
||||
Author URI: http://webcomicplanet.com/
|
||||
|
||||
*/
|
||||
|
||||
class widget_comicpress_comic_blog_post extends WP_Widget {
|
||||
|
||||
function widget_comicpress_comic_blog_post() {
|
||||
$widget_ops = array('classname' => '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;
|
||||
extract($args, EXTR_SKIP);
|
||||
|
||||
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']);
|
||||
?>
|
||||
<p><label for="<?php echo $this->get_field_id('title'); ?>">Words to use before date:<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
|
||||
}
|
||||
}
|
||||
register_widget('widget_comicpress_comic_blog_post');
|
||||
|
||||
|
||||
function widget_comicpress_comic_blog_post_init() {
|
||||
new widget_comicpress_comic_blog_post();
|
||||
}
|
||||
|
||||
add_action('widgets_init', 'widget_comicpress_comic_blog_post_init');
|
||||
|
||||
?>
|
Loading…
Reference in New Issue