Skip to content

Instantly share code, notes, and snippets.

@vermasachin
Last active December 28, 2015 19:09
Show Gist options
  • Save vermasachin/7548173 to your computer and use it in GitHub Desktop.
Save vermasachin/7548173 to your computer and use it in GitHub Desktop.
Opt-in After Single Post
/** Add the below post section */
add_action( 'genesis_entry_footer', 'below_post_text' );
function below_post_text() {
if ( 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