Skip to content

Instantly share code, notes, and snippets.

@eto4detak
Created September 26, 2018 11:31
Show Gist options
  • Save eto4detak/5b479f05752f56c8e2c55bd0f9c932e7 to your computer and use it in GitHub Desktop.
Save eto4detak/5b479f05752f56c8e2c55bd0f9c932e7 to your computer and use it in GitHub Desktop.
wp php feed
<?php
add_filter( 'pre_get_posts', 'how_many_posts_display_in_feed' );
function how_many_posts_display_in_feed($query) {
if( ! $query->is_feed || ! $query->is_main_query() )
return;
// этот вариант не работает
// $query->set( 'posts_per_page', 11 );
// Сколько записей показывать
$n = 7;
add_filter( 'post_limits', create_function('', "return 'LIMIT $n';") );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment