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_Block_Templates::convert_slug_to_title( string $template_slug )
Converts template slugs into readable titles.
Parameters Parameters
- $template_slug
-
(string) (Required) The templates slug (e.g. single-product).
Return Return
(string) Human friendly title converted from the slug.
Source Source
File: includes/class-llms-block-templates.php
private function convert_slug_to_title( $template_slug ) { $template_titles = array_merge( ...array_column( $this->block_templates_config, 'template_titles' ) ); return array_key_exists( $template_slug, $template_titles ) ? $template_titles[ $template_slug ] : // Replace all hyphens and underscores with spaces. ucwords( preg_replace( '/[\-_]/', ' ', $template_slug ) ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
5.8.0 | Introduced. |