File: //proc/thread-self/root/var/www/hcv/wp-content/themes/hockey/templates/page-elements/element12.php
<?php
// Element ID: Element12
// Element Name: Testimonials
$args = array(
    'post_type' => 'testimonial',
    'orderby' => 'date',
    'order'   => 'DESC',
    'meta_query'	=> array(
        array(
            'key'	  	=> 'is_on_homepage',
            'value'	  	=> true,
            'compare' 	=> '=',
        ),
    ),
);
$element["testimonials"] = Timber::get_posts($args);
$link = get_field( 'testimonials_page_template','options');
if(substr($link , -1) == '/'){
    $link = substr_replace($link ,"", -1);
}
$element["testimonials_link"] = $link;