install_plugins_table_api_args_recommended
Filters API request arguments for each Add Plugins screen tab.
This is one of the variants of the dynamic hook install_plugins_table_api_args_(tab)
Usage
add_filter( 'install_plugins_table_api_args_recommended', 'wp_kama_install_plugins_table_api_args_recommended_filter' );
/**
* Function for `install_plugins_table_api_args_recommended` filter-hook.
*
* @param array|false $args Plugin install API arguments.
*
* @return array|false
*/
function wp_kama_install_plugins_table_api_args_recommended_filter( $args ){
// filter...
return $args;
}
- $args(array|false)
- Plugin install API arguments.
Changelog
| Since 3.7.0 | Introduced. |
Where the hook is called
install_plugins_table_api_args_recommended
wp-admin/includes/class-wp-plugin-install-list-table.php 236
$args = apply_filters( "install_plugins_table_api_args_{$tab}", $args );