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
Обеспечение корректной обработки If-Modified-Since имеет чрезвычайно важную роль, если мы боремся за органический трафик. |
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
function wpcourses_disable_date_archives( $query ){ | |
if( is_date() || is_tag() || is_author() ) { | |
wp_redirect( home_url() ); | |
exit; | |
} | |
} | |
add_action( 'parse_query', 'wpcourses_disable_date_archives' ); |
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
<?php | |
/* | |
Автор: apexweb.ru | |
Запись в лог файл введенного адреса в формат CSV | |
*/ | |
// Ограничение размера входных данных | |
$max_input_size = 1024; // Подстраивайте под свои нужды |