Add Outro text to category pages in Genesis
<?php | |
add_action( "genesis_after_loop", "display_category_outro"); | |
function display_category_outro() { | |
if ( is_category() ) { | |
echo "test message for outro"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
To learn more about the is_category() WordPress conditional tag, visit https://codex.wordpress.org/Conditional_Tags