Builder Church Block
From IThemes Codex
Contents |
How to add manual excerpt support for Staff entries
If you would like to have Excerpt metabox in Staff entry edit screen, add the following in City Church child theme's functions.php:
add_action('init', 'add_excerpt_support_to_staff'); function add_excerpt_support_to_staff() { add_post_type_support( 'staff', 'excerpt' ); }