Make WordPress Core


Ignore:
Timestamp:
10/07/2010 09:10:35 AM (14 years ago)
Author:
nacin
Message:

Sticky post support for post types, first pass. see #12702, props azizur.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/meta-boxes.php

    r15722 r15742  
    118118    $visibility = 'password';
    119119    $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 ) ) {
    121121    $visibility = 'public';
    122122    $visibility_trans = __('Public, Sticky');
     
    132132<div id="post-visibility-select" class="hide-if-js">
    133133<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' ) ): ?>
    135135<input type="checkbox" style="display:none" name="hidden_post_sticky" id="hidden-post-sticky" value="sticky" <?php checked(is_sticky($post->ID)); ?> />
    136136<?php endif; ?>
     
    139139
    140140<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 post to 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>
    143143<?php endif; ?>
    144144<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 />
Note: See TracChangeset for help on using the changeset viewer.