bp_core_moment_js_config()
Return moment.js config.
Description Description
Return Return
(string)
Source Source
File: bp-core/bp-core-cssjs.php
function bp_core_moment_js_config() { // Grab the locale from the enqueued JS. $moment_locale = wp_scripts()->query( 'bp-moment-locale' ); $moment_locale = substr( $moment_locale->src, strpos( $moment_locale->src, '/moment-js/locale/' ) + 18 ); $moment_locale = str_replace( '.js', '', $moment_locale ); $inline_js = <<<EOD jQuery(function() { moment.locale( '{$moment_locale}' ); }); EOD; return $inline_js; }
Changelog Changelog
Version | Description |
---|---|
2.7.0 | Introduced. |