Integrating slick.js into wordpress

Adjusted some of your code. This should work: [php]<?php /** * Block Name: Testimonials * * This is the template that displays the testimonials loop block. */ $argType = get_field(‘loop_argument_type’); if ($argType == "count") : $args = array( ‘orderby’ => ‘title’, ‘post_type’ => ‘testimonials’, ‘posts_per_page’ => get_field(‘testimonial_count’) ); else : $testimonials = get_field(‘select_testimonials’); $args = … Read more