mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-04 01:00:04 +00:00
Docs: Various docblock improvements.
See #51800 git-svn-id: https://develop.svn.wordpress.org/trunk@49790 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -1178,7 +1178,7 @@ function remove_query_arg( $key, $query = false ) {
|
||||
*
|
||||
* @since 4.4.0
|
||||
*
|
||||
* @return string[] An array of parameters to remove from the URL.
|
||||
* @return string[] An array of query variable names to remove from the URL.
|
||||
*/
|
||||
function wp_removable_query_args() {
|
||||
$removable_query_args = array(
|
||||
@@ -1213,11 +1213,11 @@ function wp_removable_query_args() {
|
||||
);
|
||||
|
||||
/**
|
||||
* Filters the list of query variables to remove.
|
||||
* Filters the list of query variable names to remove.
|
||||
*
|
||||
* @since 4.2.0
|
||||
*
|
||||
* @param string[] $removable_query_args An array of query variables to remove from a URL.
|
||||
* @param string[] $removable_query_args An array of query variable names to remove from a URL.
|
||||
*/
|
||||
return apply_filters( 'removable_query_args', $removable_query_args );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user