Make WordPress Core


Ignore:
Timestamp:
02/26/2015 02:46:40 AM (10 years ago)
Author:
helen
Message:

Hide irrelevant UI and display a message when editing the page for posts.

Users are frequently confused as to why the content they've entered or the page template they've selected doesn't apply for this one page. Showing and saving items that don't do anything hurts trust.

Developers can elect to turn on the editor should they be using it for something. If the content isn't empty, the editor will show so that users still have access to their content.

props alexkingorg for the initial, long-suffering patch.
fixes #17470.

File:
1 edited

Legend:

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

    r31331 r31550  
    740740        } // end empty pages check
    741741    } // end hierarchical check.
    742     if ( 'page' == $post->post_type && 0 != count( get_page_templates( $post ) ) ) {
     742    if ( 'page' == $post->post_type && 0 != count( get_page_templates( $post ) ) && get_option( 'page_for_posts' ) != $post->ID ) {
    743743        $template = !empty($post->page_template) ? $post->page_template : false;
    744744        ?>
Note: See TracChangeset for help on using the changeset viewer.