Rename `wp_get_remote_patterns` to `wp_get_theme_directory_pattern_slugs`.
Props dd32, ntsekouras. Fixes #58460. Built from https://develop.svn.wordpress.org/trunk@55983 git-svn-id: http://core.svn.wordpress.org/trunk@55495 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
eac207ed52
commit
045b72564b
|
@ -287,7 +287,7 @@ function _register_remote_theme_patterns() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$pattern_settings = wp_get_remote_theme_patterns();
|
$pattern_settings = wp_get_theme_directory_pattern_slugs();
|
||||||
if ( empty( $pattern_settings ) ) {
|
if ( empty( $pattern_settings ) ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -436,6 +436,6 @@ function wp_clean_theme_json_cache() {
|
||||||
*
|
*
|
||||||
* @return string[]
|
* @return string[]
|
||||||
*/
|
*/
|
||||||
function wp_get_remote_theme_patterns() {
|
function wp_get_theme_directory_pattern_slugs() {
|
||||||
return WP_Theme_JSON_Resolver::get_theme_data( array(), array( 'with_supports' => false ) )->get_patterns();
|
return WP_Theme_JSON_Resolver::get_theme_data( array(), array( 'with_supports' => false ) )->get_patterns();
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.3-alpha-55982';
|
$wp_version = '6.3-alpha-55983';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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