afsarwebdev

WP Widget

Oct 1st, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. /***** Shortcode, Custom Posts with Widget *****/
  2.  
  3. /* Register sidebars and widgetized areas
  4.  
  5. ********************************************/
  6.  
  7. // this is for right sidebar
  8.  
  9. function technotiers_widget_areas() {
  10.  
  11. register_sidebar( array(
  12. 'name' => __( 'Right Sidebar', 'NewsTheme' ),
  13. 'id' => 'right_sidebar',
  14. 'before_widget' => '<div class="single_sidebar">',
  15. 'after_widget' => '</div>',
  16. 'before_title' => '<h2>',
  17. 'after_title' => '</h2>',
  18. ) );
  19.  
  20. }
  21. add_action('widgets_init', 'technotiers_widget_areas');
  22.  
  23.  
  24. /***** write the following code between div to activate sidebar or dynamic sidebar
  25.  
  26. *****/
  27.  
  28. <?php dynamic_sidebar('right_sidebar'); ?>
  29.  
  30.  
  31. // write the following code on functions.php to activate shortcode in widget
  32.  
  33. add_filter('widget_text', 'do_shortcode');
Add Comment
Please, Sign In to add comment