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 … [Read more...] about Remove entry content display option from Genesis Theme Settings for Content Archives
Archive of Code Snippets
Remove entry excerpt display option from Genesis Theme Settings for Content Archives
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 … [Read more...] about Remove entry excerpt display option from Genesis Theme Settings for Content Archives
Remove entry-content
// Remove the post content remove_action( 'genesis_entry_content', 'genesis_do_post_content' ); … [Read more...] about Remove entry-content
Remove empty entry-content markup
$( ".entry-content" ).remove(); … [Read more...] about Remove empty entry-content markup
Executive Pro – Display second sub-menu of the last top level navigation item to the right
/* .genesis-nav-menu = ul wrapping all menu items li = top level menu items li:last-child = last top level menu item .sub-menu = ul of the second level menu items .sub-menu = ul of the third level menu items */ .genesis-nav-menu li:last-child .sub-menu .sub-menu { right: 100%; } … [Read more...] about Executive Pro – Display second sub-menu of the last top level navigation item to the right