Guest User

Untitled

a guest
Mar 19th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. function set_posts_per_page_for_attorneys_cpt( $atty ) {
  2. if ( !is_admin() && $atty->is_main_query() && is_post_type_archive( 'attorneys' ) ) {
  3. $atty->set( 'posts_per_page', '-1' );
  4. $atty->set( 'meta_key', 'last_name' );
  5. $atty->set( 'orderby', 'meta_value' );
  6. $atty->set( 'order', 'ASC' );
  7. $atty->set( 'facetwp', true);
  8. }
  9. }
  10. add_action( 'pre_get_posts', 'set_posts_per_page_for_attorneys_cpt' );
Add Comment
Please, Sign In to add comment