Builder Church Block
(Difference between revisions)
m (→How to add manual excerpt support for Staff entries) |
m |
||
| Line 1: | Line 1: | ||
| + | [http://ithemes.com/forum/forum/134-builder-block-church/ Builder Church Block Support forum] | ||
| + | |||
= How to add manual excerpt support for Staff entries = | = How to add manual excerpt support for Staff entries = | ||
Revision as of 09:54, December 8, 2011
Builder Church Block Support forum
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' );
}
Source: http://codex.wordpress.org/Function_Reference/add_post_type_support

