'magnificient_RandomPostWidget', 'description' => __( 'Displays a random post with thumbnail', 'magnificient' ) ); $this->WP_Widget('magnificient_RandomPostWidget', __( 'Random Post and Thumbnail', 'magnificient' ), $widget_ops); } function form($instance) { $instance = wp_parse_args( (array) $instance, array( 'title' => '' ) ); $title = $instance['title']; ?>

'; query_posts('posts_per_page=5'); if (have_posts()) : echo ""; while (have_posts()) : the_post(); ?> '.get_the_title(); echo '
'; endwhile; echo ""; echo ''; endif; wp_reset_query(); echo $after_widget; } } add_action( 'widgets_init', create_function('', 'return register_widget("magnificient_RandomPostWidget");') ); ?>