how to add more testimonials
-
I would like to extend the number of shown testimonials.
I found these two php pages which i edited:
featured-main-hook.phpi added this info
$biography_fs_posts[][‘biography-fs-pages-ids’] = $biography_customizer_saved_options[‘biography-fs-page-4’];
$biography_fs_posts[][‘biography-fs-pages-ids’] = $biography_customizer_saved_options[‘biography-fs-page-5’];and changed the number 3 to 5
if( !empty( $biography_fs_posts_ids )){
$biography_fs_args = array(
‘post_type’ => ‘page’,
‘post__in’ => $biography_fs_posts_ids,
‘posts_per_page’ => 5,
‘orderby’ => ‘post__in’foreach( $biography_slider_arrays as $biography_slider_array ){
if( 5 < $i){
break;homepage-testimonial.php
$biography_home_testimonial_posts[3][‘biography-home-testimonial-pages-ids’] = $biography_customizer_saved_options[‘biography-home-testimonial-page-4’];
$biography_home_testimonial_posts[4][‘biography-home-testimonial-pages-ids’] = $biography_customizer_saved_options[‘biography-home-testimonial-page-5’];if( !empty( $biography_home_testimonial_posts_ids )){
$biography_home_testimonial_args = array(
‘post_type’ => ‘page’,
‘post__in’ => $biography_home_testimonial_posts_ids,
‘posts_per_page’ => 5,
‘orderby’ => ‘post__inBut i think i need to change something else because at the Home/Front review section there are still 3 options instead of 5
Can you guide me again?
Best regards
Frans van Huizen
- The topic ‘how to add more testimonials’ is closed to new replies.