PATH:
home
/
lab2454c
/
fcxpro.com
/
wp-content
/
plugins
/
webon-core
/
inc
/
title
/
layouts
/
standard
<?php if ( ! function_exists( 'webon_core_register_standard_title_layout' ) ) { /** * Function that add variation layout for this module * * @param array $layouts * * @return array */ function webon_core_register_standard_title_layout( $layouts ) { $layouts['standard'] = 'WebOnCoreStandardTitle'; return $layouts; } add_filter( 'webon_core_filter_register_title_layouts', 'webon_core_register_standard_title_layout'); } if ( ! function_exists( 'webon_core_add_standard_title_layout_option' ) ) { /** * Function that set new value into title layout options map * * @param array $layouts - module layouts * * @return array */ function webon_core_add_standard_title_layout_option( $layouts ) { $layouts['standard'] = esc_html__( 'Standard', 'webon-core' ); return $layouts; } add_filter( 'webon_core_filter_title_layout_options', 'webon_core_add_standard_title_layout_option' ); } if ( ! function_exists( 'webon_core_get_standard_title_layout_subtitle_text' ) ) { /** * Function that render current page subtitle text */ function webon_core_get_standard_title_layout_subtitle_text() { $subtitle_meta = webon_core_get_post_value_through_levels( 'qodef_page_title_subtitle' ); $subtitle = array( 'subtitle' => ! empty( $subtitle_meta ) ? $subtitle_meta : '' ); return apply_filters( 'webon_core_filter_standard_title_layout_subtitle_text', $subtitle ); } }
[+]
..
[+]
templates
[-] include.php
[edit]
[+]
assets
[-] standard-title.php
[edit]
[-] helper.php
[edit]
[+]
dashboard