Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created September 1, 2014 00:49
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/cbcaf51b25bbae30cea7 to your computer and use it in GitHub Desktop.
Save billerickson/cbcaf51b25bbae30cea7 to your computer and use it in GitHub Desktop.
<?php
/**
* Blog Intro
*
*/
function be_blog_intro() {
echo '<div class="blog-intro"><h1>' . get_the_title() . '</h1>' . apply_filters( 'the_content', get_the_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