After yesterday’s post, I got a few inquiries on how to remove the entry content display option from the Genesis Theme Settings, instead of entry excerpt.
In other words, how to remove the option to show the complete post content and only allow excerpts.
You only need to change one word: ‘excerts’ to ‘full’
add_filter( 'genesis_archive_display_options', 'ch_remove_excerpts_from_content_archive_display_option' ); /** * Removes the Entry excerpts display option from Genesis Theme Settings Content Archives * box. * * @param array $archive_display Existing display types. * @return array Amended display types. */ function ch_remove_excerpts_from_content_archive_display_option( array $archive_display ) { if ( isset( $archive_display['full'] ) ) { unset( $archive_display['full'] ); } return $archive_display; }
Leave a Reply