To insert code use <code>...</code>.
Portfolio List Widget maxes out at 15
  • I Have a Striking-Portflolio List widget in my Portfolio Widget area and have it set to display 20 posts, but it only shows 15 posts. Is there a way that I can get it to show more than 15?

    http://calvarypetaluma.tk/portfolio/jim-lesha-harding
  • 2 Comments sorted by
  • Hi


    maybe try this...

    open the portfolio.php in the framework/widgets folder and search for



    $title = apply_filters('widget_title', empty($instance['title']) ? __('Portfolios', 'striking_front') : $instance['title'], $instance, $this->id_base);
    if ( !$number = (int) $instance['number'] )
    $number = 10;
    else if ( $number < 1 )
    $number = 1;
    else if ( $number > 15 )
    $number = 15;



    adjust the two lines with the 15 number in it....

    Best regards,
    BackuPs
  • That did it.

    Thanks so much for the help.
This discussion has been closed.
All Discussions