Example #1
0
                                    </div>
                                </div>
                            </div>
                            <?php 
    if ($i % 3 == 0) {
        echo '</div><div class="row">';
    }
    $i++;
}
echo '</div>';
wp_reset_postdata();
?>
                    </div>
                    <!-- <div class="col-sm-9">
                <?php 
var_dump(my_filters());
?>
            </div> -->
                </div>
            </div>
        </div>
        <!-- item-list-page-wrap -->
    </form>

    <script type="text/template" id="javo-loading-html">
        <div class="row">
            <div class="col-md-12">
                <div class="text-center">
                    <img src="<?php 
echo JAVO_IMG_DIR . '/loading_2.gif';
?>
Example #2
0
function my_query_args()
{
    $query = my_sort_params();
    $query['post_type'] = 'item';
    $query['meta_query'] = my_filters();
    $query['posts_per_page'] = -1;
    $query['posts_per_archive_page'] = -1;
    /* #191 - Remove the Tempus Two Barrel Room from the search results page */
    $query['post__not_in'] = array("800");
    return $query;
}