Changeset 2898 for sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-central-2012/template-schedule.php
- Timestamp:
- 04/05/2016 04:05:02 PM (9 years ago)
- Location:
- sites/trunk/wordcamp.org
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org
-
Property
svn:mergeinfo
set to
/sites/branches/application-tracking/wordcamp.org merged eligible
-
Property
svn:mergeinfo
set to
-
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-central-2012/template-schedule.php
r1658 r2898 11 11 <div id="container" class="wc-schedule"> 12 12 <div id="content" role="main"> 13 13 14 14 <?php if ( have_posts() ) : the_post(); ?> 15 15 … … 22 22 23 23 <?php endif; // end of the loop. ?> 24 24 25 25 <?php // Get the upcoming approved (published) WordCamps 26 26 if ( function_exists( 'wcpt_has_wordcamps' ) && 27 27 wcpt_has_wordcamps( array( 28 'post_status' => WordCamp_Loader::get_public_post_statuses(), 28 29 'posts_per_page' => -1, 29 30 'meta_key' => 'Start Date (YYYY-mm-dd)', … … 35 36 'compare' => '>' 36 37 ) ) 37 ) ) 38 ) ) 38 39 ) : 39 40 ?> … … 41 42 <ul class="wc-schedule-list"> 42 43 <?php while ( wcpt_wordcamps() ) : wcpt_the_wordcamp(); ?> 43 44 44 45 <li> 45 46 <a href="<?php echo esc_url( wcpt_get_wordcamp_url() ); ?>"> … … 49 50 <div class="wc-image wp-post-image wordcamp-placeholder-thumb" title="<?php the_title(); ?>"></div> 50 51 <?php endif; ?> 51 52 52 53 <h2 class="wc-title"><?php wcpt_wordcamp_title(); ?></h2> 53 54 <span class="wc-country"><?php wcpt_wordcamp_location(); ?></span> … … 77 78 </div><!-- #container --> 78 79 79 <?php 80 get_sidebar( 'schedule' ); 80 <?php 81 get_sidebar( 'schedule' ); 81 82 get_footer();
Note: See TracChangeset
for help on using the changeset viewer.