Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created December 2, 2015 13:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/44bf1782129b92b967bf to your computer and use it in GitHub Desktop.
Save billerickson/44bf1782129b92b967bf to your computer and use it in GitHub Desktop.
<?php
/**
* Blog Intro
*
*/
function be_blog_intro() {
// Only run on homepage
if( ! is_home() )
return;
$content = get_post( get_option( 'page_for_posts' ) )->post_content;
if( $content )
echo '<div class="blog-intro">' . wpautop( $content ) . '</div>';
}
add_action( 'genesis_before_loop', 'be_blog_intro' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment