Dynamic Sidebar


/ Published in: Other
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <?php if(!function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar') ) : ?><?php endif; ?>
  2.  
  3.  
  4. <?php
  5. if (function_exists('register_sidebar') )
  6. register_sidebar(array(
  7. 'before_widget' => '<div class="widget">',
  8. 'after_widget' => '</div>',
  9. 'before_title' => '<h2>',
  10. 'after_title' => '</h2>',
  11. ))
  12. ;
  13. ?>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.