Skip to content

Instantly share code, notes, and snippets.

@helart
Last active August 15, 2020 18:42
Show Gist options
  • Save helart/5b9570ae4aaa1d2e23f62ed118a3d3db to your computer and use it in GitHub Desktop.
Save helart/5b9570ae4aaa1d2e23f62ed118a3d3db to your computer and use it in GitHub Desktop.
// Добавление "Цитаты" для страниц
function page_excerpt() {
add_post_type_support('page', array('excerpt'));
}
add_action('init', 'page_excerpt');
// Отключаем поиск
function fb_filter_query( $query, $error = true ) {
if ( is_search() ) {
$query->is_search = false;
$query->query_vars[s] = false;
$query->query[s] = false;
// Ошибка
if ( $error == true )
$query->is_404 = true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment