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.
Astra_Cache_Base::asset_slug()
Get current asset slug.
Description
Return
(String)
Source
File: classes/cache/class-astra-cache-base.php
private function asset_slug() { if ( 'home' === $this->asset_type || 'frontpage' === $this->asset_type ) { return $this->asset_type; } else { return $this->asset_type . $this->cache_key_suffix(); } }
Expand full source code Collapse full source code View on Trac
Changelog
Version | Description |
---|---|
2.1.0 | Introduced. |