bp_core_enqueue_livestamp()
Enqueue and localize livestamp.js script.
Description Description
Source Source
File: bp-core/bp-core-cssjs.php
function bp_core_enqueue_livestamp() { // If bp-livestamp isn't enqueued, do it now. if ( wp_script_is( 'bp-livestamp' ) ) { return; } /* * Only enqueue Moment.js locale if we registered it in * bp_core_register_common_scripts(). */ if ( wp_script_is( 'bp-moment-locale', 'registered' ) ) { wp_enqueue_script( 'bp-moment-locale' ); wp_add_inline_script ( 'bp-livestamp', bp_core_moment_js_config() ); } wp_enqueue_script( 'bp-livestamp' ); }
Changelog Changelog
Version | Description |
---|---|
2.7.0 | Introduced. |