Last active
December 15, 2015 03:39
-
-
Save braddalton/5195501 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
genesis_register_sidebar( array( | |
'id' => 'text-before-blog', | |
'name' => 'Text Before Blog', | |
'description' => 'This is the widget for displaying text before blog posts.', | |
) ); | |
add_action('genesis_before_content', 'apparition_text_before_blog' ); | |
function apparition_text_before_blog() { | |
if( is_page(139) ) { | |
echo '<div class="text-before-blog">'; | |
dynamic_sidebar( 'text-before-blog' ); | |
echo '</div>'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment