Created
October 7, 2015 14:53
-
-
Save javiergbas/80bd688ba5fadb2b9a55 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Fix to use index.php in search results in all languages (WPML sometimtes uses the template used in home) | |
function force_template_override( $template ) { | |
if( is_search() ) { | |
$p = pathinfo($template); | |
return $p['dirname'].'/index.php'; | |
} | |
return $template; | |
} | |
add_filter( 'template_include', 'force_template_override', 99 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment