bp_core_confirmation_js()
Load the JS for “Are you sure?” confirm links.
Description Description
Source Source
File: bp-core/bp-core-cssjs.php
function bp_core_confirmation_js() { if ( is_multisite() && ! bp_is_root_blog() ) { return false; } wp_enqueue_script( 'bp-confirm' ); wp_localize_script( 'bp-confirm', 'BP_Confirm', array( 'are_you_sure' => __( 'Are you sure?', 'buddypress' ), ) ); }
Changelog Changelog
Version | Description |
---|---|
1.1.0 | Introduced. |