Docs: Miscellaneous docblock improvements.
See #53399 Built from https://develop.svn.wordpress.org/trunk@51330 git-svn-id: http://core.svn.wordpress.org/trunk@50939 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0dadbcab6b
commit
2e6a782a5f
|
@ -552,11 +552,11 @@ endif;
|
||||||
* Filters a user contactmethod label.
|
* Filters a user contactmethod label.
|
||||||
*
|
*
|
||||||
* The dynamic portion of the filter hook, `$name`, refers to
|
* The dynamic portion of the filter hook, `$name`, refers to
|
||||||
* each of the keys in the contactmethods array.
|
* each of the keys in the contact methods array.
|
||||||
*
|
*
|
||||||
* @since 2.9.0
|
* @since 2.9.0
|
||||||
*
|
*
|
||||||
* @param string $desc The translatable label for the contactmethod.
|
* @param string $desc The translatable label for the contact method.
|
||||||
*/
|
*/
|
||||||
echo apply_filters( "user_{$name}_label", $desc );
|
echo apply_filters( "user_{$name}_label", $desc );
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -1315,7 +1315,7 @@ class WP_Rewrite {
|
||||||
/**
|
/**
|
||||||
* Filters rewrite rules used for date archives.
|
* Filters rewrite rules used for date archives.
|
||||||
*
|
*
|
||||||
* Likely date archives would include /yyyy/, /yyyy/mm/, and /yyyy/mm/dd/.
|
* Likely date archives would include `/yyyy/`, `/yyyy/mm/`, and `/yyyy/mm/dd/`.
|
||||||
*
|
*
|
||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
*
|
*
|
||||||
|
@ -1330,7 +1330,7 @@ class WP_Rewrite {
|
||||||
* Filters rewrite rules used for root-level archives.
|
* Filters rewrite rules used for root-level archives.
|
||||||
*
|
*
|
||||||
* Likely root-level archives would include pagination rules for the homepage
|
* Likely root-level archives would include pagination rules for the homepage
|
||||||
* as well as site-wide post feeds (e.g. /feed/, and /feed/atom/).
|
* as well as site-wide post feeds (e.g. `/feed/`, and `/feed/atom/`).
|
||||||
*
|
*
|
||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
*
|
*
|
||||||
|
@ -1344,7 +1344,7 @@ class WP_Rewrite {
|
||||||
/**
|
/**
|
||||||
* Filters rewrite rules used for comment feed archives.
|
* Filters rewrite rules used for comment feed archives.
|
||||||
*
|
*
|
||||||
* Likely comments feed archives include /comments/feed/, and /comments/feed/atom/.
|
* Likely comments feed archives include `/comments/feed/` and `/comments/feed/atom/`.
|
||||||
*
|
*
|
||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
*
|
*
|
||||||
|
@ -1359,7 +1359,7 @@ class WP_Rewrite {
|
||||||
/**
|
/**
|
||||||
* Filters rewrite rules used for search archives.
|
* Filters rewrite rules used for search archives.
|
||||||
*
|
*
|
||||||
* Likely search-related archives include /search/search+query/ as well as
|
* Likely search-related archives include `/search/search+query/` as well as
|
||||||
* pagination and feed paths for a search.
|
* pagination and feed paths for a search.
|
||||||
*
|
*
|
||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
|
@ -1374,7 +1374,7 @@ class WP_Rewrite {
|
||||||
/**
|
/**
|
||||||
* Filters rewrite rules used for author archives.
|
* Filters rewrite rules used for author archives.
|
||||||
*
|
*
|
||||||
* Likely author archives would include /author/author-name/, as well as
|
* Likely author archives would include `/author/author-name/`, as well as
|
||||||
* pagination and feed paths for author archives.
|
* pagination and feed paths for author archives.
|
||||||
*
|
*
|
||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.9-alpha-51329';
|
$wp_version = '5.9-alpha-51330';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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