WordPress の固定ページには「抜粋」の入力欄が無い。
まあ固定ページだから、最新記事とかに表示するわけではないから、不要といえば不要だけど、この前、固定ページでも「抜粋」を利用したいケースがありました。
その場合は functions.php に
add_post_type_support( 'page', 'excerpt' );
を追加すればオッケー。だけど公式リファレンス見ると、init アクションフックで呼び出せとのこと。ってことで、
function custom_init() {
add_post_type_support( 'page', 'excerpt' );
}
add_action('init', 'custom_init');
とする。 逆に「投稿」から「抜粋」を 削除したい場合は
function custom_init() {
remove_post_type_support( 'post', 'excerpt' );
}
add_action('init', 'custom_init');
とする。
excerpt のほか、’title’, ‘editor’, ‘author’, ‘thumbnail’, ‘trackbacks’, ‘custom-fields’, ‘comments’, ‘revisions’, ‘page-attributes’,’post-formats’ を指定可能。
いろんな入力項目があると、お客さんが混乱しちゃう場合があるから、消去しておくといい場合があるかも。