Skip to content

Instantly share code, notes, and snippets.

View tweenpix's full-sized avatar
🏠
Working from home

Apexweb tweenpix

🏠
Working from home
View GitHub Profile
@tweenpix
tweenpix / gist:02ad3f754a6246c6c113f06b94e45219
Created May 3, 2024 11:38
Wordpress disable archive of tag, author, date
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' );
@tweenpix
tweenpix / gist:92cc8f977c3e8a1a3e1a2ea9b7c4d8df
Created March 6, 2024 06:56
loging post vars in cvs format file
<?php
/*
Автор: apexweb.ru
Запись в лог файл введенного адреса в формат CSV
*/
// Ограничение размера входных данных
$max_input_size = 1024; // Подстраивайте под свои нужды