Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter jeddy5

    (@jeddy5)

    Short code

    <?php 
    
        $term = get_term_by( 'slug', get_query_var('term'), get_query_var('taxonomy') );
    
        echo do_shortcode("[ajax_load_more post_type='products' repeater='template_3' taxonomy='product-category' taxonomy_terms='. $term->name .' offset='12' posts_per_page='12' pause='true' scroll='false' transition='slide' button_label='LOAD MORE' container_type='div']");
    
        ?>

    Repeater template:

    <div class="grid__item max-tablet--one-half tablet--one-quarter">
        	<article>
                <a href="<?php the_permalink(); ?>">
                    <div class="overlay-item overlay-item--blue">
                    	<?php
    						if ( has_post_thumbnail() ) {
    							the_post_thumbnail('productsmall');
    						}
    					?>
                        <div class="overlay"></div>
                        <div class="overlay-content">
                            <div class="overlay-content-position">
                            <span>
    							<?php
                                    $terms_as_text = get_the_term_list( $post->ID, 'casestudy-category', '', ', ', '' ) ;
                                    echo strip_tags($terms_as_text);
                                ?>
                                </span>
                            <h3><?php the_title(); ?></h3>
                                <p>Read more ?</p>
                            </div>
                        </div>
                    </div>
                </a>
            </article>
    	</div>
Viewing 1 replies (of 1 total)