Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Mikko Saari

    (@msaari)

    This:

    global $wp_query;
    $args = array_merge( $wp_query->query, array( 'posts_per_page' => 16 ) );
    query_posts( $args );

    This is used to set the posts_per_page to 16. A better method to do that is described here.

    Thread Starter jf1982

    (@jfrechette)

    Thank you very much, Mikko. By removing those lines of code and adding the additional code to the functions.php, it’s working like a charm! I really appreciate your help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Results Not Shown (need assistance on what to change)’ is closed to new replies.