REST API: Add missing options to the settings endpoint.
This adds the `show_on_front`, `page_on_front`, and `page_for_posts` options to the settings endpoint that were missed during WP 6.0 backports. Related PR from Gutenberg repository: * [https://github.com/WordPress/gutenberg/pull/38607 #38607 Page for Posts: Display notice in template panel] Props Mamaduka, spacedmonkey, gziolo, jameskoster. See #56058. Built from https://develop.svn.wordpress.org/trunk@53588 git-svn-id: http://core.svn.wordpress.org/trunk@53176 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
46eb690e8f
commit
126de33a0d
|
@ -2063,6 +2063,7 @@ function set_site_transient( $transient, $value, $expiration = 0 ) {
|
||||||
* does not encompass all settings available in WordPress.
|
* does not encompass all settings available in WordPress.
|
||||||
*
|
*
|
||||||
* @since 4.7.0
|
* @since 4.7.0
|
||||||
|
* @since 6.1.0 The `show_on_front`, `page_on_front`, and `page_for_posts` options were added.
|
||||||
*/
|
*/
|
||||||
function register_initial_settings() {
|
function register_initial_settings() {
|
||||||
register_setting(
|
register_setting(
|
||||||
|
@ -2220,6 +2221,36 @@ function register_initial_settings() {
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
register_setting(
|
||||||
|
'reading',
|
||||||
|
'show_on_front',
|
||||||
|
array(
|
||||||
|
'show_in_rest' => true,
|
||||||
|
'type' => 'string',
|
||||||
|
'description' => __( 'What to show on the front page' ),
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
register_setting(
|
||||||
|
'reading',
|
||||||
|
'page_on_front',
|
||||||
|
array(
|
||||||
|
'show_in_rest' => true,
|
||||||
|
'type' => 'number',
|
||||||
|
'description' => __( 'The ID of the page that should be displayed on the front page' ),
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
register_setting(
|
||||||
|
'reading',
|
||||||
|
'page_for_posts',
|
||||||
|
array(
|
||||||
|
'show_in_rest' => true,
|
||||||
|
'type' => 'number',
|
||||||
|
'description' => __( 'The ID of the page that should display the latest posts' ),
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
register_setting(
|
register_setting(
|
||||||
'discussion',
|
'discussion',
|
||||||
'default_ping_status',
|
'default_ping_status',
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.1-alpha-53587';
|
$wp_version = '6.1-alpha-53588';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue