Prevent an exhibit from appearing in Browse Exhibits

Is it possible to prevent an exhibit from being displayed in Browse Exhibits without having to make the exhibit “private.” There are some exhibits that I want to prevent being shown on the Browse Exhibits page but still have them show up on other pages.

Thanks.

I think the easiest way to do this is to use a Simple Page instead of the regular Browse Exhibits page. That way, you can use shortcodes to load only the exhibits you want to display. (The downside being that when you add a new exhibit, you will need to manually update the page.)

I got it to work using the following:

<?php if ($exhibit->featured): continue; ?> <?php endif; ?>

Thanks.