PATH:
home
/
lab2454c
/
fcxpro.com
/
wp-content
/
plugins
/
webon-core
/
inc
/
typography
/
dashboard
/
admin
<?php if ( ! function_exists( 'webon_core_add_typography_options' ) ) { /** * Function that add general options for this module */ function webon_core_add_typography_options() { $qode_framework = qode_framework_get_framework_root(); $page = $qode_framework->add_options_page( array( 'scope' => WEBON_CORE_OPTIONS_NAME, 'type' => 'admin', 'slug' => 'typography', 'icon' => 'fa fa-indent', 'title' => esc_html__( 'Typography', 'webon-core' ), 'description' => esc_html__( 'Global Typography Options', 'webon-core' ), 'layout' => 'tabbed' ) ); if ( $page ) { // Hook to include additional options after module options do_action( 'webon_core_action_after_typography_options_map', $page ); } } add_action( 'webon_core_action_default_options_init', 'webon_core_add_typography_options', webon_core_get_admin_options_map_position( 'typography' ) ); }
[-] h2-options.php
[edit]
[+]
..
[-] typography-options.php
[edit]
[-] link-options.php
[edit]
[-] h1-options.php
[edit]
[-] h6-options.php
[edit]
[-] h5-options.php
[edit]
[-] h4-options.php
[edit]
[-] h3-options.php
[edit]
[-] p-options.php
[edit]