Hi there – My feedback panel has 7 items, but my site’s page that uses the feedback template is only showing 5. Could you help advise how to list all entries? Thanks so much!
Hi There,
Thanks for writing.
Where’s that you’re getting only five? Widget or the Feedback template?
Best,
Juan.
In the page that is set to the Feedback template – http://www.sixstrawberries.com/press/
Hi,
Thanks for your prompt response.
You need to edit the file template-feedback.php, in line #30 – replace the following code:
$testimonials = get_posts( array ( 'post_type' => 'feedback', 'order' => 'DESC', 'orderby' => 'menu_order') );
With this one:
$testimonials = get_posts( array ( 'post_type' => 'feedback', 'order' => 'DESC', 'orderby' => 'menu_order', 'numberposts' => -1 ) );
Best,
Juan.
That did it – Thanks so much Juan!