Skip to content

Instantly share code, notes, and snippets.

@bryceadams
Created September 16, 2012 15:35
Show Gist options
  • Save bryceadams/3732870 to your computer and use it in GitHub Desktop.
Save bryceadams/3732870 to your computer and use it in GitHub Desktop.
Add excerpt support to downloads post type
// Add excerpt support to downloads post type
add_action( 'init', 'bla_excerpt_support' );
function bla_excerpt_support() {
add_post_type_support( 'download', 'excerpt' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment