Make WordPress Core

Ticket #39078: 39078.0.diff

File 39078.0.diff, 4.4 KB (added by westonruter, 8 years ago)
  • src/wp-includes/class-wp-customize-manager.php

    diff --git src/wp-includes/class-wp-customize-manager.php src/wp-includes/class-wp-customize-manager.php
    index 8905721..2eb021e 100644
    final class WP_Customize_Manager { 
    10061006                                'posts_per_page' => -1,
    10071007                        ) );
    10081008                        foreach ( $existing_posts_query->posts as $existing_post ) {
    1009                                 $existing_starter_content_posts[ $existing_post->post_type . ':' . $existing_post->post_name ] = $existing_post;
     1009                                $post_name = $existing_post->post_name;
     1010                                if ( empty( $post_name ) ) {
     1011                                        $post_name = get_post_meta( $existing_post->ID, '_starter_content_post_name', true );
     1012                                }
     1013                                $existing_starter_content_posts[ $existing_post->post_type . ':' . $post_name ] = $existing_post;
    10101014                        }
    10111015                }
    10121016
  • src/wp-includes/class-wp-customize-nav-menus.php

    diff --git src/wp-includes/class-wp-customize-nav-menus.php src/wp-includes/class-wp-customize-nav-menus.php
    index 1305a14..89e73e1 100644
    final class WP_Customize_Nav_Menus { 
    803803                if ( empty( $postarr['post_name'] ) ) {
    804804                        $postarr['post_name'] = sanitize_title( $postarr['post_title'] );
    805805                }
     806                if ( ! isset( $postarr['meta_input'] ) ) {
     807                        $postarr['meta_input'] = array();
     808                }
     809                $postarr['meta_input']['_starter_content_post_name'] = $postarr['post_name'];
     810                unset( $postarr['post_name'] );
    806811
    807812                add_filter( 'wp_insert_post_empty_content', '__return_false', 1000 );
    808813                $r = wp_insert_post( wp_slash( $postarr ), true );
    final class WP_Customize_Nav_Menus { 
    11921197                if ( ! empty( $post_ids ) ) {
    11931198                        foreach ( $post_ids as $post_id ) {
    11941199                                $target_status = 'attachment' === get_post_type( $post_id ) ? 'inherit' : 'publish';
     1200                                $args = array(
     1201                                        'ID' => $post_id,
     1202                                        'post_status' => $target_status,
     1203                                );
     1204                                $post_name = get_post_meta( $post_id, '_starter_content_post_name', true );
     1205                                if ( $post_name ) {
     1206                                        $args['post_name'] = $post_name;
     1207                                }
    11951208
    11961209                                // Note that wp_publish_post() cannot be used because unique slugs need to be assigned.
    1197                                 wp_update_post( array( 'ID' => $post_id, 'post_status' => $target_status ) );
     1210                                wp_update_post( wp_slash( $args ) );
    11981211                        }
    11991212                }
    12001213        }
  • tests/phpunit/tests/customize/manager.php

    diff --git tests/phpunit/tests/customize/manager.php tests/phpunit/tests/customize/manager.php
    index 345e666..c4403e0 100644
    class Tests_WP_Customize_Manager extends WP_UnitTestCase { 
    454454                        } else {
    455455                                $this->assertEquals( 'auto-draft', $post->post_status );
    456456                        }
    457                         $posts_by_name[ $post->post_name ] = $post->ID;
     457                        $post_name = $post->post_name;
     458                        if ( empty( $post_name ) ) {
     459                                $post_name = get_post_meta( $post->ID, '_starter_content_post_name', true );
     460                        }
     461                        $posts_by_name[ $post_name ] = $post->ID;
    458462                }
    459463                $this->assertEquals( array( 'waffles', 'canola', 'home', 'about', 'blog', 'custom' ), array_keys( $posts_by_name ) );
    460464                $this->assertEquals( 'Custom', get_post( $posts_by_name['custom'] )->post_title );
  • tests/phpunit/tests/customize/nav-menus.php

    diff --git tests/phpunit/tests/customize/nav-menus.php tests/phpunit/tests/customize/nav-menus.php
    index f8b38a1..1feeced 100644
    class Test_WP_Customize_Nav_Menus extends WP_UnitTestCase { 
    549549                $r = $menus->insert_auto_draft_post( array( 'post_title' => 'Hello World', 'post_type' => 'post' ) );
    550550                $this->assertInstanceOf( 'WP_Post', $r );
    551551                $this->assertEquals( 'Hello World', $r->post_title );
    552                 $this->assertEquals( 'hello-world', $r->post_name );
     552                $this->assertEquals( '', $r->post_name );
     553                $this->assertEquals( 'hello-world', get_post_meta( $r->ID, '_starter_content_post_name', true ) );
    553554                $this->assertEquals( 'post', $r->post_type );
    554555
    555556                $r = $menus->insert_auto_draft_post( array( 'post_title' => 'Hello World', 'post_type' => 'post', 'post_name' => 'greetings-world', 'post_content' => 'Hi World' ) );
    556557                $this->assertInstanceOf( 'WP_Post', $r );
    557558                $this->assertEquals( 'Hello World', $r->post_title );
    558559                $this->assertEquals( 'post', $r->post_type );
    559                 $this->assertEquals( 'greetings-world', $r->post_name );
     560                $this->assertEquals( '', $r->post_name );
     561                $this->assertEquals( 'greetings-world', get_post_meta( $r->ID, '_starter_content_post_name', true ) );
    560562                $this->assertEquals( 'Hi World', $r->post_content );
    561563        }
    562564