Skip to content

Instantly share code, notes, and snippets.

@mwender
Created September 23, 2013 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mwender/6670939 to your computer and use it in GitHub Desktop.
Save mwender/6670939 to your computer and use it in GitHub Desktop.
Echo intro text from Genesis Custom Post Type (CPT) Archive Settings page
if( genesis_has_post_type_archive_support() ){
$intro_text = genesis_get_cpt_option( 'intro_text' );
if( !empty( $intro_text ) ){
echo apply_filters( 'genesis_term_intro_text_output', $intro_text );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment