Advertisement
srikat

Untitled

Mar 9th, 2014
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1. genesis_register_sidebar( array(
  2.     'id'            => 'above-content-pages',
  3.     'name'          => 'Above Content Pages',
  4.     'description'   => 'This is the above content pages section'
  5. ) );
  6.  
  7. add_action( 'genesis_before_entry', 'sk_custom_widget_area' );
  8. function sk_custom_widget_area() {
  9.  
  10.     if (is_singular('page' )) {
  11.  
  12.         genesis_widget_area( 'above-content-pages', array(
  13.             'before'    => '<div class="above-content-pages widget-area"><div class="wrap">',
  14.             'after'     => '</div></div>',
  15.         ) );
  16.  
  17.     }
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement