• Hi,

    Is there a way to show different number of posts to display on desktop vs mobile?

    For example, I want to display 8 related posts on desktop but only 5 on mobile. Possible? If not, Any workaround?

Viewing 1 replies (of 1 total)
  • Plugin Author Ajay

    (@ajay)

    You could override the settings array with the filter crp_query_args

    Untested:

    
    function wporg_crp_limit( $args ) {
      if ( wp_is_mobile() ) {
        $args['limit'] = 5;
        $args['posts_per_page'] = 5;
      }
      return $args;
    }
    

    You can change 5 to what you want. If it’s not a mobile as detected by the function then it would default to whatever the limit was set.

Viewing 1 replies (of 1 total)
  • The topic ‘Number of posts to display’ is closed to new replies.