This file contains hidden or 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
//Let Google index search pages, otherwise following links will also stop | |
function index_search_robots ($robots) { | |
if ( is_search() ) { | |
return 'index,follow'; | |
} | |
return $robots; | |
} | |
add_filter( 'wpseo_robots', 'index_search_robots' ); |
This file contains hidden or 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
//GeoIP gebruiken om contact pagina te beschermen tegen spammers | |
// Dynamisch pad bepalen voor Composer autoload | |
$autoload_path = ABSPATH . 'vendor/autoload.php'; | |
if (!file_exists($autoload_path)) { | |
error_log('Composer autoload.php niet gevonden. Controleer of Composer correct is geïnstalleerd.'); | |
return; // Stop het script als Composer niet beschikbaar is | |
} |
OlderNewer