Advertisement
Guest User

WP theme set default widget

a guest
Feb 22nd, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. <?php
  2. // sidebar.php
  3. if (is_active_sidebar('main')) {
  4.     echo '<div class="sidebar_main">';
  5.     dynamic_sidebar('main');
  6.     echo '</div>';
  7. }
  8. else {
  9.     echo '<div class="sidebar_main">';
  10.     the_widget('WP_Widget_Text');
  11.     echo '</div>';
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement