bp_activity_mentions_script()
Enqueue @mentions JS.
Source Source
File: bp-activity/bp-activity-cssjs.php
function bp_activity_mentions_script() { if ( ! bp_activity_maybe_load_mentions_scripts() ) { return; } // Special handling for New/Edit screens in wp-admin. if ( is_admin() ) { $current_screen = null; if ( function_exists( 'get_current_screen' ) ) { $current_screen = get_current_screen(); } if ( ! $current_screen || ( isset( $current_screen->is_block_editor ) && $current_screen->is_block_editor ) || ! in_array( $current_screen->base, array( 'page', 'post' ) ) || ! post_type_supports( $current_screen->post_type, 'editor' ) ) { return; } } $min = bp_core_get_minified_asset_suffix(); wp_enqueue_script( 'bp-mentions', buddypress()->plugin_url . "bp-activity/js/mentions{$min}.js", array( 'jquery', 'jquery-atwho' ), bp_get_version(), true ); wp_enqueue_style( 'bp-mentions-css', buddypress()->plugin_url . "bp-activity/css/mentions{$min}.css", array(), bp_get_version() ); wp_style_add_data( 'bp-mentions-css', 'rtl', 'replace' ); if ( $min ) { wp_style_add_data( 'bp-mentions-css', 'suffix', $min ); } // If the script has been enqueued, let's attach our mentions TinyMCE init callback. add_filter( 'tiny_mce_before_init', 'bp_add_mentions_on_tinymce_init', 10, 2 ); /** * Fires at the end of the Activity Mentions script. * * This is the hook where BP components can add their own prefetched results * friends to the page for quicker @mentions lookups. * * @since 2.1.0 */ do_action( 'bp_activity_mentions_prime_results' ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
2.1.0 | Introduced. |