Advertisement
srikat

Untitled

Feb 8th, 2015
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. //* Hook welcome message widget area before content
  2. add_action( 'genesis_before_loop', 'beautiful_welcome_message' );
  3. function beautiful_welcome_message() {
  4.  
  5.     if ( ! is_front_page() || get_query_var( 'paged' ) >= 2 )
  6.         return;
  7.  
  8.     genesis_widget_area( 'welcome-message', array(
  9.         'before' => '<div class="welcome-message" class="widget-area">',
  10.         'after'  => '</div>',
  11.     ) );
  12.  
  13.     echo '<h4>From Our Blog</h4>';
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement