Support

Account

Home Forums General Issues Using the true/false field to decide if a post is displayed Reply To: Using the true/false field to decide if a post is displayed

  • <section id="channels" class="container">
    <div class="rowOpen clearfix">
    <div class="twelvecol">
    <div id="masonary" class="nomargin">
    <?php
    $channels = new WP_Query(array('post_type'=> 'channels'));
    while ($channels->have_posts()) : $channels->the_post();
    if( ! get_field('show_on_channel_page')){ continue; } ?>
    <div class="mason galleryItem">
    <div class="img-contain border">
    <a href="<?php the_field('channel_link'); ?>" target="_blank" class="img-shiv">
    <?php $image = get_field('channel_logo');
    if(!empty($image)) {
    $imageResized = vt_resize( '', $image, 183, 183, false );
    $imageTitle = get_the_title(); 
    echo '<img src="'.$imageResized[url].'" height="'.$imageResized[height].'" width="'.$imageResized[width].'" alt="'.$imageTitle.'" class="statImg" />';
    }
    ?> 
    </a>
    </div>
    </div>
    <?php endwhile; ?>      
    </div>        
    </div>    
    </div>
    </section>

    (Thought i’d add it without any indents to make it easier to read)