Docs: Add missing `@return` description for some theme functions:
* `get_stylesheet_directory_uri()` * `get_stylesheet_uri()` * `get_locale_stylesheet_uri()` Props stevenlinx. Fixes #50450. Built from https://develop.svn.wordpress.org/trunk@48138 git-svn-id: http://core.svn.wordpress.org/trunk@47907 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0a2d2b93e6
commit
f1e9bdd9b5
|
@ -182,7 +182,7 @@ function get_stylesheet() {
|
||||||
*
|
*
|
||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
*
|
*
|
||||||
* @return string Path to current theme stylesheet directory.
|
* @return string Path to current theme's stylesheet directory.
|
||||||
*/
|
*/
|
||||||
function get_stylesheet_directory() {
|
function get_stylesheet_directory() {
|
||||||
$stylesheet = get_stylesheet();
|
$stylesheet = get_stylesheet();
|
||||||
|
@ -206,7 +206,7 @@ function get_stylesheet_directory() {
|
||||||
*
|
*
|
||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
*
|
*
|
||||||
* @return string
|
* @return string URI to current theme's stylesheet directory.
|
||||||
*/
|
*/
|
||||||
function get_stylesheet_directory_uri() {
|
function get_stylesheet_directory_uri() {
|
||||||
$stylesheet = str_replace( '%2F', '/', rawurlencode( get_stylesheet() ) );
|
$stylesheet = str_replace( '%2F', '/', rawurlencode( get_stylesheet() ) );
|
||||||
|
@ -233,7 +233,7 @@ function get_stylesheet_directory_uri() {
|
||||||
*
|
*
|
||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
*
|
*
|
||||||
* @return string
|
* @return string URI to current theme's stylesheet.
|
||||||
*/
|
*/
|
||||||
function get_stylesheet_uri() {
|
function get_stylesheet_uri() {
|
||||||
$stylesheet_dir_uri = get_stylesheet_directory_uri();
|
$stylesheet_dir_uri = get_stylesheet_directory_uri();
|
||||||
|
@ -268,7 +268,7 @@ function get_stylesheet_uri() {
|
||||||
*
|
*
|
||||||
* @global WP_Locale $wp_locale WordPress date and time locale object.
|
* @global WP_Locale $wp_locale WordPress date and time locale object.
|
||||||
*
|
*
|
||||||
* @return string
|
* @return string URI to current theme's localized stylesheet.
|
||||||
*/
|
*/
|
||||||
function get_locale_stylesheet_uri() {
|
function get_locale_stylesheet_uri() {
|
||||||
global $wp_locale;
|
global $wp_locale;
|
||||||
|
@ -316,7 +316,7 @@ function get_template() {
|
||||||
*
|
*
|
||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
*
|
*
|
||||||
* @return string Path to current theme template directory.
|
* @return string Path to current theme's template directory.
|
||||||
*/
|
*/
|
||||||
function get_template_directory() {
|
function get_template_directory() {
|
||||||
$template = get_template();
|
$template = get_template();
|
||||||
|
@ -340,7 +340,7 @@ function get_template_directory() {
|
||||||
*
|
*
|
||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
*
|
*
|
||||||
* @return string URI to current theme template directory.
|
* @return string URI to current theme's template directory.
|
||||||
*/
|
*/
|
||||||
function get_template_directory_uri() {
|
function get_template_directory_uri() {
|
||||||
$template = str_replace( '%2F', '/', rawurlencode( get_template() ) );
|
$template = str_replace( '%2F', '/', rawurlencode( get_template() ) );
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.5-alpha-48137';
|
$wp_version = '5.5-alpha-48138';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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