Display all testimonials on a single page

Easy Property Listings WordPress Real Estate Plugin Forums Extensions Testimonial Manager Display all testimonials on a single page

Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)

These forums are closed to new replies / tickets. Please open a support ticket from our new Support page.

  • Author
    Posts
  • #7662
    Sampford Cathie
    Spectator

    Hi there,

    I’d like to show all of my testimonials on a single page, but I can’t find any documentation on this plugin anywhere on the site. Is there a way to do this?

    Thanks.

    #8880
    Merv Barrett
    Keymaster

    Each testimonial is stored as a custom post type entry and can be used various ways.

    To see the list of testimonials visit:

    http://YOUR_URL/testimonial/

    You can override the number of listings that are displayed using a function in you theme.

    // Post Limit Testimonial
    function rec_testimonial_post_limit( $query ) {
        if( !is_admin() && $query->is_main_query() && is_post_type_archive( 'testimonial' ) ) {
            $query->set( 'posts_per_page', '30' );
        }
    }
    add_action( 'pre_get_posts', 'rec_testimonial_post_limit' );

    Adjust the 30 to the number you need on a page.

These forums are closed to new replies / tickets. Please open a support ticket from our new Support page.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Display all testimonials on a single page’ is closed to new replies.