Advertisement
Guest User

querypost_widget

a guest
Oct 29th, 2012
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. function querypost_widget($atts) {
  2.     extract(shortcode_atts(array(
  3.         "align" => "",
  4.     ), $atts));
  5.    
  6.     if (function_exists('dynamic_sidebar') && dynamic_sidebar('homepage-news-post')) : else : endif;
  7. }
  8.        
  9. add_shortcode('qpwidget', 'querypost_widget');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement