Skip to content

Instantly share code, notes, and snippets.

@chugs
chugs / tec-custom-search.php
Last active December 11, 2018 03:13
Extend The Events Calendar search to include custom fields
/**
* Extend The Events Calendar search to include custom fields
*
* Reference - Extend WordPress search to include custom fields
* http://adambalee.com/search-wordpress-by-custom-fields-without-a-plugin/
*
* Reference - https://theeventscalendar.com/support/forums/topic/how-to-include-custom-fields-in-search/
*/
/**
function _remove_script_version( $src ){
$parts = explode( '?', $src );
return $parts[0];
}
add_filter( 'script_loader_src', '_remove_script_version', 15, 1 );
add_filter( 'style_loader_src', '_remove_script_version', 15, 1 );