Advertisement
fahimmurshed

astra infinite pagination post type

Jul 31st, 2020
1,705
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. add_filter( 'astra_infinite_pagination_post_type', 'astra_infinite_pagination_post_type_func' );
  2. function astra_infinite_pagination_post_type_func( $post_type ) {
  3.     $post_type = 'page';
  4.     return $post_type;
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement