¿Como Incluir custom post types in search fácilmente?
<?php /** * Add All Custom Post Types to search * * Returns the main $query. * * @access public * @since 1.0 * @return $query */ function rc_add_cpts_to_search($query) { // Check to verify it's search page if( is_search() ) { // Get post types $post_types = get_post_types(array('public' => true, 'exclude_from_search' => false), 'objects'); $searchable_types