Create list of future post on any page from specific category (upcoming events)
Description
Change 2 to the category of post that you want to display and all of these post will display that scheduled in the future. This is good for upcoming events
Change 2 to the category of post that you want to display and all of these post will display that scheduled in the future. This is good for upcoming events
PHP Source Code
<!-- Post Starts -->
<?php query_posts('showposts=10&post_status=future&category=2'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<!--Post attributes Start-->
<!--Post attributes End-->
<?php endwhile;
else: ?>
<h4><span>No Upcoming Mission Trips Scheduled.</span> </h4>
<?php endif; ?>
<!-- Post Ends -->