Function Signature:
wp_default_packages_vendor
Function Description:
Registers all the WordPress vendor scripts that are in the standardized `js/dist/vendor/` location.
Function Examples:
⚠️ Examples below are generated with GPT-3 once every hour. Do not take them too seriously.
Consider them as some extra input in your learning process - reason about them. Will it work? What could fail?
// Example 1: Enqueue default vendor packages in a WordPress theme
add_action( 'wp_enqueue_scripts', 'enqueue_default_vendor_packages' );
function enqueue_default_vendor_packages() {
wp_enqueue_script( 'wp-vendor', '', array( 'wp-element', 'wp-hooks' ) );
}
// Example 2: Customize default vendor packages in a WordPress plugin
add_filter( 'wp_default_packages_vendor', 'customize_default_vendor_packages' );
function customize_default_vendor_packages( $packages ) {
$packages['lodash'] = array(
'scripts' => array( 'https://cdn.jsdelivr.net/npm/lodash' ),
'dependencies' => array( 'wp-element', 'wp-hooks' )
);
return $packages;
}
// Example 3: Remove default vendor packages in a child theme
add_action( 'wp_default_packages_vendor', 'remove_default_vendor_packages', 20 );
function remove_default_vendor_packages( $packages ) {
unset( $packages['react-dom'] );
return $packages;
}