Quantcast
Channel: Site5 Free Premium WordPress Themes » All Posts
Viewing all articles
Browse latest Browse all 8865

Reply To: Portfolio pages misbehaving

$
0
0

If anyone still having this problem please try to change this in functions.php:

function portfolio_posts_per_page( $query ) {

    if ( $query->query_vars['post_type'] == ‘portfolio’ ) $query->query_vars['posts_per_page'] = 6;

    return $query;

to this:

function portfolio_posts_per_page( $query ) {

    if ( $query->query_vars['post_type'] == ‘portfolio’ ) $query->query_vars['posts_per_page'] = -1;

    return $query;

 

It worked for me.


Viewing all articles
Browse latest Browse all 8865

Trending Articles