Changeset 2894
- Timestamp:
- 04/04/2016 11:42:19 PM (9 years ago)
- Location:
- sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wcpt
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wcpt/applications/tracker.php
r2870 r2894 21 21 22 22 $posts = get_posts( array( 23 'post_type' => 'wordcamp',23 'post_type' => WCPT_POST_TYPE_ID, 24 24 'post_status' => $shown_statuses, 25 25 'posts_per_page' => 300, -
sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wcpt/applications/wordcamp.php
r2891 r2894 160 160 161 161 $post = array( 162 'post_type' => 'wordcamp',162 'post_type' => WCPT_POST_TYPE_ID, 163 163 'post_title' => 'WordCamp ' . $data['q_1079103_wordcamp_location'], 164 164 'post_status' => WCPT_DEFAULT_STATUS, -
sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wcpt/wcpt-wordcamp/wordcamp-template.php
r2877 r2894 648 648 */ 649 649 function add_wordcamp_feed_link_to_head() { 650 if ( ! is_post_type_archive( 'wordcamp') ) {650 if ( ! is_post_type_archive( WCPT_POST_TYPE_ID ) ) { 651 651 ?> 652 652 653 <link rel="alternate" type="<?php echo esc_attr( feed_content_type() ); ?>" title="New WordCamp Announcements" href="<?php echo esc_url( get_post_type_archive_feed_link( 'wordcamp') ); ?>" />653 <link rel="alternate" type="<?php echo esc_attr( feed_content_type() ); ?>" title="New WordCamp Announcements" href="<?php echo esc_url( get_post_type_archive_feed_link( WCPT_POST_TYPE_ID ) ); ?>" /> 654 654 655 655 <?php
Note: See TracChangeset
for help on using the changeset viewer.