Skip to content

Instantly share code, notes, and snippets.

@seredniy
Forked from campusboy87/request.php
Created June 26, 2018 15:01
Show Gist options
  • Save seredniy/f921d69b4f485ad6652898096740218a to your computer and use it in GitHub Desktop.
Save seredniy/f921d69b4f485ad6652898096740218a to your computer and use it in GitHub Desktop.
Имитирует функционал "Отображать на статической странице список записей".
<?php
add_filter( 'request', function ( $query_vars ) {
if ( isset( $query_vars['pagename'] ) && $query_vars['pagename'] === 'all-articles' ) {
add_filter( "pre_option_page_for_posts", function () {
return 484; // ID нужной страницы
} );
}
return $query_vars;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment