bp_core_get_js_dependencies()
Get the JavaScript dependencies for buddypress.js.
Description Description
Return Return
(array) The JavaScript dependencies.
Source Source
File: bp-core/bp-core-cssjs.php
function bp_core_get_js_dependencies() { /** * Filters the javascript dependencies for buddypress.js. * * @since 2.0.0 * * @param array $value Array of javascript dependencies for buddypress.js. */ return apply_filters( 'bp_core_get_js_dependencies', array( 'jquery', 'bp-confirm', 'bp-widget-members', 'bp-jquery-query', 'bp-jquery-cookie', 'bp-jquery-scroll-to' ) ); }
Changelog Changelog
Version | Description |
---|---|
2.0.0 | Introduced. |