Changeset 15742
- Timestamp:
- 10/07/2010 09:10:35 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/default-list-tables.php
r15719 r15742 921 921 </label> 922 922 923 <?php if ( 'post' == $screen->post_type&& $can_publish && current_user_can( $post_type_object->cap->edit_others_posts ) ) : ?>923 <?php if ( post_type_supports( $screen->post_type, 'sticky' ) && $can_publish && current_user_can( $post_type_object->cap->edit_others_posts ) ) : ?> 924 924 925 925 <?php if ( $bulk ) : ?> … … 938 938 <label class="alignleft"> 939 939 <input type="checkbox" name="sticky" value="sticky" /> 940 <span class="checkbox-title"><?php _e( 'Make this poststicky' ); ?></span>940 <span class="checkbox-title"><?php _e( 'Make this sticky' ); ?></span> 941 941 </label> 942 942 943 943 <?php endif; // $bulk ?> 944 944 945 <?php endif; // !$is_page&& $can_publish && current_user_can( 'edit_others_cap' ) ?>945 <?php endif; // post_type_supports(sticky) && $can_publish && current_user_can( 'edit_others_cap' ) ?> 946 946 947 947 </div> -
trunk/wp-admin/includes/meta-boxes.php
r15722 r15742 118 118 $visibility = 'password'; 119 119 $visibility_trans = __('Password protected'); 120 } elseif ( $post_type == 'post'&& is_sticky( $post->ID ) ) {120 } elseif ( post_type_supports( $post->post_type, 'sticky' ) && is_sticky( $post->ID ) ) { 121 121 $visibility = 'public'; 122 122 $visibility_trans = __('Public, Sticky'); … … 132 132 <div id="post-visibility-select" class="hide-if-js"> 133 133 <input type="hidden" name="hidden_post_password" id="hidden-post-password" value="<?php echo esc_attr($post->post_password); ?>" /> 134 <?php if ( $post_type == 'post'): ?>134 <?php if ( post_type_supports( $post->post_type, 'sticky' ) ): ?> 135 135 <input type="checkbox" style="display:none" name="hidden_post_sticky" id="hidden-post-sticky" value="sticky" <?php checked(is_sticky($post->ID)); ?> /> 136 136 <?php endif; ?> … … 139 139 140 140 <input type="radio" name="visibility" id="visibility-radio-public" value="public" <?php checked( $visibility, 'public' ); ?> /> <label for="visibility-radio-public" class="selectit"><?php _e('Public'); ?></label><br /> 141 <?php if ( $post_type == 'post'): ?>142 <span id="sticky-span"><input id="sticky" name="sticky" type="checkbox" value="sticky" <?php checked(is_sticky($post->ID)); ?> tabindex="4" /> <label for="sticky" class="selectit"><?php _e('Stick this postto the front page') ?></label><br /></span>141 <?php if ( post_type_supports( $post->post_type, 'sticky' ) ): ?> 142 <span id="sticky-span"><input id="sticky" name="sticky" type="checkbox" value="sticky" <?php checked(is_sticky($post->ID)); ?> tabindex="4" /> <label for="sticky" class="selectit"><?php _e('Stick this to the front page') ?></label><br /></span> 143 143 <?php endif; ?> 144 144 <input type="radio" name="visibility" id="visibility-radio-password" value="password" <?php checked( $visibility, 'password' ); ?> /> <label for="visibility-radio-password" class="selectit"><?php _e('Password protected'); ?></label><br /> -
trunk/wp-includes/post.php
r15700 r15742 24 24 'rewrite' => false, 25 25 'query_var' => false, 26 'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', ' trackbacks', 'custom-fields', 'comments', 'revisions' ),26 'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'sticky', 'trackbacks', 'custom-fields', 'comments', 'revisions' ), 27 27 ) ); 28 28
Note: See TracChangeset
for help on using the changeset viewer.