Skip to content

Instantly share code, notes, and snippets.

@vermasachin
Created December 21, 2013 14:08
Show Gist options
  • Save vermasachin/8069745 to your computer and use it in GitHub Desktop.
Save vermasachin/8069745 to your computer and use it in GitHub Desktop.
Opt-in After Single Posts and Pages
/** Add the below post section */
add_action( 'genesis_entry_footer', 'below_post_text' );
function below_post_text() {
if ( is_page() || is_single() )
{
genesis_widget_area( 'below-post', array(
'before' => '<div class="below-post widget-area">',
) );
}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment