Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
LLMS_Frontend_Assets::get_inline_scripts( string $where = null )
Retrieve inline scripts
Description Description
Parameters Parameters
- $where
-
(string) (Optional) header or footer, if none provided both will be returned
Default value: null
Return Return
(array)
Source Source
File: includes/class.llms.frontend.assets.php
private static function get_inline_scripts( $where = null ) { $scripts = self::$inline_scripts; if ( isset( $scripts[ $where ] ) ) { $scripts = $scripts[ $where ]; } return apply_filters( 'llms_frontend_assets_inline_scripts', $scripts ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.4.1 | Introduced. |
User Contributed Notes User Contributed Notes
Permalink: