Advertisement
Guest User

Untitled

a guest
Mar 7th, 2013
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <aside>
  2.  
  3. <?php if ( is_active_sidebar( 'Page' ) ) : ?>
  4.  
  5.  
  6.  
  7. <?php dynamic_sidebar( 'Page' ); ?>
  8.  
  9.  
  10.  
  11. <?php else : ?>
  12.  
  13.  
  14.  
  15. <!-- This content shows up if there are no widgets defined in the backend. -->
  16.  
  17. <?php if(current_user_can('edit_theme_options')) : ?>
  18.  
  19. <div class="help">
  20.  
  21.  
  22.  
  23. <p>
  24.  
  25. <?php _e("Please activate some Widgets.", "site5framework"); ?>
  26.  
  27.  
  28.  
  29. <a href="<?php echo admin_url('widgets.php')?>" class="add-widget"><?php _e("Add Widget", "site5framework"); ?></a>
  30.  
  31.  
  32.  
  33. </p>
  34.  
  35.  
  36.  
  37. </div>
  38.  
  39. <?php endif ?>
  40.  
  41.  
  42.  
  43. <?php endif; ?>
  44.  
  45. </aside>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement