Code Modernisation: Introduce the spread operator in add_post_type_support().

Rather than relying `func_get_args()` to retrieve arbitrary function arguments, we can now use the spread operator to assign them directly to a variable.

Props jrf, pento.
See #47678.


git-svn-id: https://develop.svn.wordpress.org/trunk@45625 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Gary Pendergast 2019-07-12 00:01:19 +00:00
parent 6c3ba83eb9
commit 17ba89b662

View File

@ -1779,15 +1779,15 @@ function _add_post_type_submenus() {
* feature strings or a single string. * feature strings or a single string.
* @param mixed ...$args Optional extra arguments to pass along with certain features. * @param mixed ...$args Optional extra arguments to pass along with certain features.
*/ */
function add_post_type_support( $post_type, $feature ) { function add_post_type_support( $post_type, $feature, ...$args ) {
global $_wp_post_type_features; global $_wp_post_type_features;
$features = (array) $feature; $features = (array) $feature;
foreach ( $features as $feature ) { foreach ( $features as $feature ) {
if ( func_num_args() == 2 ) { if ( $args ) {
$_wp_post_type_features[ $post_type ][ $feature ] = true; $_wp_post_type_features[ $post_type ][ $feature ] = $args;
} else { } else {
$_wp_post_type_features[ $post_type ][ $feature ] = array_slice( func_get_args(), 2 ); $_wp_post_type_features[ $post_type ][ $feature ] = true;
} }
} }
} }