Changeset 7861 for sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-central-2012/sidebar-schedule.php
- Timestamp:
- 11/16/2018 09:24:02 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-central-2012/sidebar-schedule.php
r2898 r7861 8 8 <h3>Planned WordCamps</h3> 9 9 10 <?php echo wptexturize( wpautop( "These WordCamps are in the early stages of planning, but don't have a date yet. When their dates are confirmed, they'll be added to the schedule of approved WordCamps." ) ); 11 ?> 10 <p> 11 These WordCamps are in the early stages of planning, but don't have a date yet. When their dates are confirmed, they'll be added to the schedule of approved WordCamps. 12 </p> 12 13 13 14 <?php … … 15 16 $args = array( 16 17 'posts_per_page' => -1, 17 'post_status' => WordCamp_Loader::get_pre_planning_post_statuses(),18 'post_status' => WordCamp_Loader::get_pre_planning_post_statuses(), 18 19 'meta_key' => 'Start Date (YYYY-mm-dd)', 19 20 'orderby' => 'meta_value', … … 32 33 33 34 <?php wcpt_has_wordcamps( $args ); ?> 34 <?php while ( wcpt_wordcamps() ) : wcpt_the_wordcamp(); ?> 35 <?php while ( wcpt_wordcamps() ) : 36 wcpt_the_wordcamp(); ?> 35 37 36 38 <li> … … 54 56 // and run the query again 55 57 $args['meta_query'][0]['compare'] = '<'; 56 $args['orderby'] = 'date';58 $args['orderby'] = 'date'; 57 59 wcpt_has_wordcamps( $args ); 58 60 ?> 59 61 60 <?php while ( wcpt_wordcamps() ) : wcpt_the_wordcamp(); ?> 62 <?php while ( wcpt_wordcamps() ) : 63 wcpt_the_wordcamp(); ?> 61 64 62 65 <li> … … 76 79 77 80 <li> 78 <?php echo wptexturize( 79 wpautop( 'Don’t see your city on the list, but yearning for a local WordCamp? Check out what it takes to <a href="/become-an-organizer/">become an organizer</a>!') 80 ); ?> 81 Don’t see your city on the list, but yearning for a local WordCamp? Check out what it takes to <a href="/become-an-organizer/">become an organizer</a>! 81 82 </li> 82 83
Note: See TracChangeset
for help on using the changeset viewer.