bp_core_add_jquery_cropper()
Enqueues jCrop library and hooks BP’s custom cropper JS.
Description Description
Source Source
File: bp-core/bp-core-cssjs.php
function bp_core_add_jquery_cropper() {
wp_enqueue_style( 'jcrop' );
wp_enqueue_script( 'jcrop', array( 'jquery' ) );
add_action( 'wp_head', 'bp_core_add_cropper_inline_js' );
add_action( 'wp_head', 'bp_core_add_cropper_inline_css' );
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.1.0 | Introduced. |