Make WordPress Core

Ticket #12590: 12590.3.diff

File 12590.3.diff, 2.0 KB (added by scribu, 14 years ago)

replace 'editor' with 'content'

  • wp-includes/post.php

     
    2525                                                                                'hierarchical' => false,
    2626                                                                                'rewrite' => false,
    2727                                                                                'query_var' => false,
    28                                                                                 'supports' => array('title', 'editor', 'author', 'thumbnail', 'excerpt', 'trackbacks', 'custom-fields', 'comments', 'revisions')
     28                                                                                'supports' => array('title', 'content', 'author', 'thumbnail', 'excerpt', 'trackbacks', 'custom-fields', 'comments', 'revisions')
    2929                                                                        ) );
    3030
    3131        register_post_type( 'page', array(      'label' => __('Pages'),
     
    3838                                                                                'hierarchical' => true,
    3939                                                                                'rewrite' => false,
    4040                                                                                'query_var' => false,
    41                                                                                 'supports' => array('title', 'editor', 'author', 'thumbnail', 'page-attributes', 'custom-fields', 'comments', 'revisions')
     41                                                                                'supports' => array('title', 'content', 'author', 'thumbnail', 'page-attributes', 'custom-fields', 'comments', 'revisions')
    4242                                                                        ) );
    4343
    4444        register_post_type( 'attachment', array('label' => __('Media'),
     
    839839                unset($args->supports);
    840840        } else {
    841841                // Add default features
    842                 add_post_type_support($post_type, array('title', 'editor'));
     842                add_post_type_support($post_type, array('title', 'content'));
    843843        }
    844844
    845845        if ( false !== $args->query_var && !empty($wp) ) {
     
    45854585
    45864586                add_filter('the_preview', '_set_preview');
    45874587        }
    4588 }
    4589  No newline at end of file
     4588}
  • wp-admin/edit-form-advanced.php

     
    213213</div>
    214214<?php } ?>
    215215
    216 <?php if ( post_type_supports($post_type, 'editor') ) { ?>
     216<?php if ( post_type_supports($post_type, 'content') ) { ?>
    217217<div id="<?php echo user_can_richedit() ? 'postdivrich' : 'postdiv'; ?>" class="postarea">
    218218
    219219<?php the_editor($post->post_content); ?>