Guest User

Untitled

a guest
Jul 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. class FeaturedStory_Widget extends WP_Widget {
  2. function FeaturedStory_Widget() {
  3. $widget_ops = array( 'classname' => 'featured-story', 'description' => 'Feature A Story in a Widget. Includes Site Name above the story.' );
  4. $control_ops = array('width' => 400, 'height' => 300);
  5. $this->WP_Widget( 'featured-story', 'Featured Story', $widget_ops, $control_ops );
  6. }
Add Comment
Please, Sign In to add comment