register your purchase to get automatic theme updates, import Avada demos and install premium plugins. Check out the Support tab to learn how to receive product support. We hope you enjoy it!', 'Avada' ), esc_url( admin_url( 'admin.php?page=avada-registration' ) ), '_blank', esc_url( admin_url( 'admin.php?page=avada-support' ) ) ); // WPCS: XSS ok. ?>
Envato Hosted Support Policy to learn how to receive support through the Envato hosted support team. We hope you enjoy it!', 'Avada' ), esc_url( 'https://envatohosted.zendesk.com/hc/en-us/articles/115001666945-Envato-Hosted-Support-Policy' ) ); // WPCS: XSS ok. ?>
',
);
}
} elseif ( 'fusion-core' !== $item['slug'] && 'fusion-builder' !== $item['slug'] && $item['premium'] && ! Avada()->registration->is_registered() ) {
$disable_class = ' disabled avada-no-token';
}
// We need to display the 'Install' hover link.
if ( ! isset( $installed_plugins[ $item['file_path'] ] ) ) {
if ( ! $disable_class ) {
$url = esc_url(
wp_nonce_url(
add_query_arg(
array(
'page' => rawurlencode( Avada_TGM_Plugin_Activation::$instance->menu ),
'plugin' => rawurlencode( $item['slug'] ),
'plugin_name' => rawurlencode( $item['sanitized_plugin'] ),
'tgmpa-install' => 'install-plugin',
'return_url' => 'fusion_plugins',
),
Avada_TGM_Plugin_Activation::$instance->get_tgmpa_url()
),
'tgmpa-install',
'tgmpa-nonce'
)
);
} else {
$url = '#';
}
if ( $fusion_builder_action ) {
$actions = $fusion_builder_action;
} else {
$actions = array(
/* translators: Plugin name. */
'install' => '' . esc_attr__( 'Install', 'Avada' ) . '',
);
}
} elseif ( is_plugin_inactive( $item['file_path'] ) ) {
// We need to display the 'Activate' hover link.
$url = esc_url(
add_query_arg(
array(
'plugin' => rawurlencode( $item['slug'] ),
'plugin_name' => rawurlencode( $item['sanitized_plugin'] ),
'avada-activate' => 'activate-plugin',
'avada-activate-nonce' => wp_create_nonce( 'avada-activate' ),
),
admin_url( 'admin.php?page=avada-plugins' )
)
);
$actions = array(
/* translators: Plugin Name. */
'activate' => '' . esc_attr__( 'Activate', 'Avada' ) . '',
);
} elseif ( version_compare( $installed_plugins[ $item['file_path'] ]['Version'], $item['version'], '<' ) ) {
$disable_class = '';
// We need to display the 'Update' hover link.
$url = wp_nonce_url(
add_query_arg(
array(
'page' => rawurlencode( Avada_TGM_Plugin_Activation::$instance->menu ),
'plugin' => rawurlencode( $item['slug'] ),
'tgmpa-update' => 'update-plugin',
'version' => rawurlencode( $item['version'] ),
'return_url' => 'fusion_plugins',
),
Avada_TGM_Plugin_Activation::$instance->get_tgmpa_url()
),
'tgmpa-update',
'tgmpa-nonce'
);
if ( 'fusion-core' !== $item['slug'] && 'fusion-builder' !== $item['slug'] && $item['premium'] && ! Avada()->registration->is_registered() ) {
$disable_class = ' disabled avada-no-token';
}
$actions = array(
/* translators: Plugin Name. */
'update' => '' . esc_attr__( 'Update', 'Avada' ) . '',
);
} elseif ( is_plugin_active( $item['file_path'] ) ) {
$url = esc_url(
add_query_arg(
array(
'plugin' => rawurlencode( $item['slug'] ),
'plugin_name' => rawurlencode( $item['sanitized_plugin'] ),
'avada-deactivate' => 'deactivate-plugin',
'avada-deactivate-nonce' => wp_create_nonce( 'avada-deactivate' ),
),
admin_url( 'admin.php?page=avada-plugins' )
)
);
$actions = array(
/* translators: Plugin name. */
'deactivate' => '' . esc_attr__( 'Deactivate', 'Avada' ) . '',
);
} // End if().
return $actions;
}
/**
* Removes install link for Fusion Builder, if Fusion Core was not updated to 3.0
*
* @since 5.0.0
* @param array $action_links The action link(s) for a required plugin.
* @param string $item_slug The slug of a required plugin.
* @param array $item Data belonging to a required plugin.
* @param string $view_context Specifying the kind of action (install, activate, update).
* @return array The action link(s) for a required plugin.
*/
public function edit_tgmpa_action_links( $action_links, $item_slug, $item, $view_context ) {
if ( 'fusion-builder' === $item_slug && 'install' === $view_context ) {
$fusion_core_version = Avada_TGM_Plugin_Activation::$instance->get_installed_version( Avada_TGM_Plugin_Activation::$instance->plugins['fusion-core']['slug'] );
if ( version_compare( $fusion_core_version, '3.0', '<' ) ) {
$action_links['install'] = '' . esc_attr__( 'Fusion Builder will be installable, once Fusion Core plugin is updated.', 'Avada' ) . '' . esc_attr__( 'Fusion Builder', 'Avada' ) . '';
}
}
return $action_links;
}
/**
* Removes install link for Fusion Builder, if Fusion Core was not updated to 3.0
*
* @since 5.0.0
* @param array $action_links The action link(s) for a required plugin.
* @return array The action link(s) for a required plugin.
*/
public function edit_tgmpa_notice_action_links( $action_links ) {
$fusion_core_version = Avada_TGM_Plugin_Activation::$instance->get_installed_version( Avada_TGM_Plugin_Activation::$instance->plugins['fusion-core']['slug'] );
$current_screen = get_current_screen();
if ( 'avada_page_avada-plugins' == $current_screen->id ) {
$link_template = '' . esc_attr__( 'Manage Plugins Below', 'Avada' ) . '';
$action_links = array(
'install' => $link_template,
);
} elseif ( version_compare( $fusion_core_version, '3.0', '<' ) ) {
$link_template = '' . esc_attr__( 'Go Manage Plugins', 'Avada' ) . '';
$action_links = array(
'install' => $link_template,
);
}
return $action_links;
}
/**
* Initialize the permalink settings.
*
* @since 3.9.2
*/
public function init_permalink_settings() {
add_settings_field(
'avada_portfolio_category_slug', // ID.
esc_attr__( 'Avada portfolio category base', 'Avada' ), // Setting title.
array( $this, 'permalink_slug_input' ), // Display callback.
'permalink', // Settings page.
'optional', // Settings section.
array(
'taxonomy' => 'portfolio_category',
) // Args.
);
add_settings_field(
'avada_portfolio_skills_slug',
esc_attr__( 'Avada portfolio skill base', 'Avada' ),
array( $this, 'permalink_slug_input' ),
'permalink',
'optional',
array(
'taxonomy' => 'portfolio_skills',
)
);
add_settings_field(
'avada_portfolio_tag_slug',
esc_attr__( 'Avada portfolio tag base', 'Avada' ),
array( $this, 'permalink_slug_input' ),
'permalink',
'optional',
array(
'taxonomy' => 'portfolio_tags',
)
);
}
/**
* Show a slug input box.
*
* @since 3.9.2
* @access public
* @param array $args The argument.
*/
public function permalink_slug_input( $args ) {
$permalinks = get_option( 'avada_permalinks' );
$permalink_base = $args['taxonomy'] . '_base';
$input_name = 'avada_' . $args['taxonomy'] . '_slug';
$placeholder = $args['taxonomy'];
?>
registration->is_registered() ) {
$license_status = Avada()->remote_install->validate_envato_hosted_subscription_code();
$registration_args = Avada()->registration->get_args();
$product_id = sanitize_key( $registration_args['name'] );
$registration_array = array(
$product_id => $license_status,
'scopes' => array(),
);
update_option( 'fusion_registered', $registration_array );
$registration_array = array(
$product_id => array(
'token' => SUBSCRIPTION_CODE,
),
);
update_option( 'fusion_registration', $registration_array );
}
}
/**
* Sets the theme version.
*
* @since 5.0.0
*
* @access public
* @return void
*/
public function set_theme_version() {
$theme_version = Avada()->get_normalized_theme_version();
$this->theme_version = $theme_version;
}
/**
* Sets the WP_Object for the theme.
*
* @since 5.0.0
*
* @access public
* @return void
*/
public function set_theme_object() {
$theme_object = wp_get_theme();
if ( $theme_object->parent_theme ) {
$template_dir = basename( Avada::$template_dir_path );
$theme_object = wp_get_theme( $template_dir );
}
$this->theme_object = $theme_object;
}
/**
* Override some LayerSlider data.
*
* @since 5.0.5
* @access public
* @return void
*/
public function layerslider_overrides() {
// Disable auto-updates.
$GLOBALS['lsAutoUpdateBox'] = false;
}
/**
* Add custom rules to Facebook instant articles plugin.
*
* @since 5.1
* @access public
* @param object $transformers The transformers object from the Facebook Instant Articles plugin.
* @return object
*/
public function add_instant_article_rules( $transformers ) {
$selectors_pass = array( 'fusion-fullwidth', 'fusion-builder-row', 'fusion-layout-column', 'fusion-column-wrapper', 'fusion-title', 'fusion-imageframe', 'imageframe-align-center', 'fusion-checklist', 'fusion-li-item', 'fusion-li-item-content' );
$selectors_ignore = array( 'fusion-column-inner-bg-image', 'fusion-clearfix', 'title-sep-container', 'fusion-sep-clear', 'fusion-separator' );
$avada_rules = '{ "rules" : [';
foreach ( $selectors_pass as $selector ) {
$avada_rules .= '{ "class": "PassThroughRule", "selector" : "div.' . $selector . '" },';
}
foreach ( $selectors_ignore as $selector ) {
$avada_rules .= '{ "class": "IgnoreRule", "selector" : "div.' . $selector . '" },';
}
$avada_rules = trim( $avada_rules, ',' ) . ']}';
$transformers->loadRules( $avada_rules );
return $transformers;
}
/**
* Returns an array of strings that will be used by avada-admin.js for translations.
*
* @access private
* @since 5.2
* @return array
*/
private function get_admin_script_l10n_strings() {
return array(
'content' => esc_attr__( 'Content', 'Avada' ),
'modify' => esc_attr__( 'Modify', 'Avada' ),
'full_import' => esc_attr__( 'Full Import', 'Avada' ),
'partial_import' => esc_attr__( 'Partial Import', 'Avada' ),
'import' => esc_attr__( 'Import', 'Avada' ),
'download' => esc_attr__( 'Download', 'Avada' ),
'classic' => __( 'Importing demo content will give you sliders, pages, posts, theme options, widgets, sidebars and other settings. This will replicate the live demo. Clicking this option will replace your current theme options and widgets. It can also take a minute to complete.
REQUIREMENTS:
• Memory Limit of 256 MB and max execution time (php time limit) of 300 seconds.
• Revolution Slider and LayerSlider must be activated for sliders to import.
• Fusion Core must be activated for Fusion Slider, portfolio and FAQs to be imported.
• Fusion Builder must be activated for page content to display as intended.', 'Avada' ),
'caffe' => __( 'Importing demo content will give you sliders, pages, posts, theme options, widgets, sidebars and other settings. This will replicate the live demo. Clicking this option will replace your current theme options and widgets. It can also take a minute to complete.
REQUIREMENTS:
• Memory Limit of 128 MB and max execution time (php time limit) of 180 seconds.
• Fusion Core must be activated for sliders, portfolios and FAQs to import.
• Contact Form 7 plugin must be activated for the form to import.
• Fusion Builder must be activated for page content to display as intended.', 'Avada' ),
'church' => __( 'Importing demo content will give you sliders, pages, posts, theme options, widgets, sidebars and other settings. This will replicate the live demo. Clicking this option will replace your current theme options and widgets. It can also take a minute to complete.
REQUIREMENTS:
• Memory Limit of 128 MB and max execution time (php time limit) of 180 seconds.
• Fusion Core must be activated for sliders, portfolios and FAQs to import.
• The Events Calendar Plugin must be activated for all event data to import.
• Contact Form 7 plugin must be activated for the form to import.
• Fusion Builder must be activated for page content to display as intended.', 'Avada' ),
'modern_shop' => __( 'Importing demo content will give you sliders, pages, posts, theme options, widgets, sidebars and other settings. This will replicate the live demo. Clicking this option will replace your current theme options and widgets. It can also take a minute to complete.
REQUIREMENTS:
• Memory Limit of 128 MB and max execution time (php time limit) of 180 seconds.
• Fusion Core must be activated for sliders, portfolios and FAQs to import.
• WooCommerce must be activated for all shop data to import.
• Contact Form 7 plugin must be activated for the form to import.
• Fusion Builder must be activated for page content to display as intended.', 'Avada' ),
'classic_shop' => __( 'Importing demo content will give you sliders, pages, posts, theme options, widgets, sidebars and other settings. This will replicate the live demo. Clicking this option will replace your current theme options and widgets. It can also take a minute to complete.
REQUIREMENTS:
• Memory Limit of 128 MB and max execution time (php time limit) of 180 seconds.
• Revolution Slider must be activated for sliders to import.
• Fusion Core must be activated for Fusion Slider, portfolio and FAQs to be imported.
• WooCommerce must be activated for all shop data to import.
• Contact Form 7 plugin must be activated for the form to import.
• Fusion Builder must be activated for page content to display as intended.', 'Avada' ),
'landing_product' => __( 'Importing demo content will give you sliders, pages, posts, theme options, widgets, sidebars and other settings. This will replicate the live demo. Clicking this option will replace your current theme options and widgets. It can also take a minute to complete.
REQUIREMENTS:
• Memory Limit of 128 MB and max execution time (php time limit) of 180 seconds.
• Revolution Slider must be activated for sliders to import.
• Fusion Core must be activated for Fusion Slider, portfolio and FAQs to be imported.
• WooCommerce must be activated for all shop data to import.
• Fusion Builder must be activated for page content to display as intended.', 'Avada' ),
'forum' => __( 'Importing demo content will give you sliders, pages, posts, theme options, widgets, sidebars and other settings. This will replicate the live demo. Clicking this option will replace your current theme options and widgets. It can also take a minute to complete.
REQUIREMENTS:
• Memory Limit of 128 MB and max execution time (php time limit) of 180 seconds.
• Fusion Core must be activated for sliders, portfolios and FAQs to import.
• bbPress must be activated for all forum data to import.
• Contact Form 7 plugin must be activated for the form to import.
• Fusion Builder must be activated for page content to display as intended.', 'Avada' ),
'technology' => __( 'Importing demo content will give you sliders, pages, posts, theme options, widgets, sidebars and other settings. This will replicate the live demo. Clicking this option will replace your current theme options and widgets. It can also take a minute to complete.
REQUIREMENTS:
• Memory Limit of 256 MB and max execution time (php time limit) of 300 seconds.
• Fusion Core and LayerSlider must be activated for sliders to import.
• Contact Form 7 plugin must be activated for the form to import.
• Fusion Builder must be activated for page content to display as intended.', 'Avada' ),
'creative' => __( 'Importing demo content will give you sliders, pages, posts, theme options, widgets, sidebars and other settings. This will replicate the live demo. Clicking this option will replace your current theme options and widgets. It can also take a minute to complete.
REQUIREMENTS:
• Memory Limit of 128 MB and max execution time (php time limit) of 180 seconds.
• Revolution Slider must be activated for sliders to import.
• Contact Form 7 plugin must be activated for the form to import.
• Fusion Core must be activated for Fusion Slider, portfolio and FAQs to be imported.
• Fusion Builder must be activated for page content to display as intended.', 'Avada' ),
'default' => __( 'Importing demo content will give you sliders, pages, posts, theme options, widgets, sidebars and other settings. This will replicate the live demo. Clicking this option will replace your current theme options and widgets. It can also take a minute to complete.
REQUIREMENTS:
• Memory Limit of 128 MB and max execution time (php time limit) of 180 seconds.
• Fusion Core must be activated for sliders, portfolios and FAQs to import.
• Contact Form 7 plugin must be activated for the form to import.
• Fusion Builder must be activated for page content to display as intended.', 'Avada' ),
/* translators: The current step label. */
'currently_processing' => esc_attr__( 'Currently Processing: %s', 'Avada' ),
/* translators: The current step label. */
'currently_removing' => esc_attr__( 'Currently Removing: %s', 'Avada' ),
'file_does_not_exist' => esc_attr__( 'The file does not exist', 'Avada' ),
/* translators: URL. */
'error_timeout' => wp_kses_post( sprintf( __( 'Demo server couldn\'t be reached. Please check for wp_remote_get on the System Status page.', 'Avada' ), admin_url( 'admin.php?page=avada-system-status' ) ) ),
/* translators: URL. */
'error_php_limits' => wp_kses_post( sprintf( __( 'Demo import failed. Please check for PHP limits in red on the System Status page. Change those to the recommended value and try again.', 'Avada' ), admin_url( 'admin.php?page=avada-system-status' ) ) ),
'remove_demo' => esc_attr__( 'Removing demo content will remove ALL previously imported demo content from this demo and restore your site to the previous state it was in before this demo content was imported.', 'Avada' ),
'update_fc' => __( 'Fusion Builder Plugin can only be installed and activated if Fusion Core plugin is at version 3.0 or higher. Please update Fusion Core first.', 'Avada' ),
/* translators: URL. */
'register_first' => sprintf( __( 'This plugin can only be installed or updated, after you have successfully completed the Avada product registration on the Product Registration tab.', 'Avada' ), admin_url( 'admin.php?page=avada-registration' ) ),
'plugin_install_failed' => __( 'Plugin install failed. Please try Again.', 'Avada' ),
'plugin_active' => __( 'Active', 'Avada' ),
);
}
/**
* Add meta boxes to taxonomies
*
* @access public
* @since 3.1.1
* @return void
*/
public function avada_taxonomy_meta() {
global $fusion_settings, $pagenow;
if ( ! ( 'term.php' === $pagenow || 'edit-tags.php' === $pagenow || ( fusion_doing_ajax() && ! empty( $_REQUEST['action'] ) && 'add-tag' === $_REQUEST['action'] ) ) ) {
return;
}
// Get array of available sliders.
$sliders_array = avada_get_available_sliders_array();
// Include Tax meta class.
include_once Avada::$template_dir_path . '/includes/class-avada-taxonomy-meta.php';
// Where to add meta fields.
$args = array(
'screens' => apply_filters( 'fusion_tax_meta_allowed_screens', array( 'category', 'portfolio_category', 'faq_category', 'product_cat', 'tribe_events_cat', 'post_tag', 'portfolio_tags', 'product_tag', 'topic-tag', 'portfolio_skills' ) ),
);
// Init taxonomy meta boxes.
$avada_meta = new Avada_Taxonomy_Meta( $args );
// Add fields.
$avada_meta->header(
'fusion_tax_heading',
array(
'value' => __( 'Fusion Taxonomy Options', 'Avada' ),
'class' => 'avada-tax-heading avada-tax-heading-edit',
)
);
$avada_meta->select(
'slider_type',
array(
'no' => __( 'No Slider', 'Avada' ),
'layer' => __( 'LayerSlider', 'Avada' ),
'flex' => __( 'Fusion Slider', 'Avada' ),
'rev' => __( 'Slider Revolution', 'Avada' ),
'elastic' => __( 'Elastic Slider', 'Avada' ),
),
array(
'name' => __( 'Slider Type ', 'Avada' ),
'default' => 'no',
'class' => 'avada-sliders-selection',
'desc' => __( 'Select the type of slider that displays.', 'Avada' ),
)
);
$avada_meta->select(
'fusion_tax_slider',
$sliders_array['layer_sliders'],
array(
'name' => __( 'Select LayerSlider ', 'Avada' ),
'default' => 0,
'class' => 'avada-sliders-group avada-layer-slider',
'desc' => __( 'Select the unique name of the slider.', 'Avada' ),
'dependency' => array(
array(
'field' => 'slider_type',
'value' => 'layer',
'comparison' => '==',
),
),
)
);
$avada_meta->select(
'fusion_tax_wooslider',
$sliders_array['fusion_sliders'],
array(
'name' => __( 'Select Fusion Slider ', 'Avada' ),
'default' => 0,
'class' => 'avada-sliders-group avada-flex-slider',
'desc' => __( 'Select the unique name of the slider.', 'Avada' ),
'dependency' => array(
array(
'field' => 'slider_type',
'value' => 'flex',
'comparison' => '==',
),
),
)
);
$avada_meta->select(
'fusion_tax_revslider',
$sliders_array['rev_sliders'],
array(
'name' => __( 'Select Slider Revolution Slider', 'Avada' ),
'default' => 0,
'class' => 'avada-sliders-group avada-rev-slider',
'desc' => __( 'Select the unique name of the slider.', 'Avada' ),
'dependency' => array(
array(
'field' => 'slider_type',
'value' => 'rev',
'comparison' => '==',
),
),
)
);
$avada_meta->select(
'fusion_tax_elasticslider',
$sliders_array['elastic_sliders'],
array(
'name' => __( 'Select Elastic Slider', 'Avada' ),
'default' => 0,
'class' => 'avada-sliders-group avada-elastic-slider',
'desc' => __( 'Select the unique name of the slider.', 'Avada' ),
'dependency' => array(
array(
'field' => 'slider_type',
'value' => 'elastic',
'comparison' => '==',
),
),
)
);
$avada_meta->buttonset(
'slider_position',
array(
'default' => __( 'Default', 'Avada' ),
'below' => __( 'Below', 'Avada' ),
'above' => __( 'Above', 'Avada' ),
),
array(
'name' => __( 'Slider Position', 'Avada' ),
'default' => 'default',
'class' => 'avada-sliders-group avada-slider-buttonset',
/* translators: The "Fusion Theme Options" link. */
'desc' => sprintf( esc_attr__( 'Select if the slider shows below or above the header. Only works for top header position. %s', 'Avada' ), Avada()->settings->get_default_description( 'slider_position', '', 'select' ) ),
'dependency' => array(
array(
'field' => 'slider_type',
'value' => 'no',
'comparison' => '!=',
),
),
)
);
$avada_meta->text(
'main_padding_top',
array(
'name' => __( 'Page Content Top Padding', 'Avada' ),
/* translators: The "Fusion Theme Options" link. */
'desc' => sprintf( esc_attr__( 'In pixels ex: 20px. %s', 'Avada' ), Avada()->settings->get_default_description( 'main_padding', 'top' ) ),
)
);
$avada_meta->text(
'main_padding_bottom',
array(
'name' => __( 'Page Content Bottom Padding', 'Avada' ),
/* translators: The "Fusion Theme Options" link. */
'desc' => sprintf( esc_attr__( 'In pixels ex: 20px. %s', 'Avada' ), Avada()->settings->get_default_description( 'main_padding', 'bottom' ) ),
)
);
$avada_meta->colorpicker(
'header_bg_color',
array(
'name' => __( 'Header Background Color', 'Avada' ),
'default' => Avada()->settings->get( 'archive_header_bg_color' ),
/* translators: The "Fusion Theme Options" link. */
'desc' => sprintf( esc_attr__( 'Controls the background color for the header. Hex code or rgba value, ex: #000. %s', 'Avada' ), Avada()->settings->get_default_description( 'archive_header_bg_color' ) ),
)
);
$avada_meta->image(
'page_title_bg',
array(
'name' => __( 'Page Title Bar Background', 'Avada' ),
/* translators: The "Fusion Theme Options" link. */
'desc' => sprintf( esc_attr__( 'Select an image to use for the page title bar background. %s', 'Avada' ), Avada()->settings->get_default_description( 'page_title_bg', 'url' ) ),
)
);
$avada_meta->image(
'page_title_bg_retina',
array(
'name' => __( 'Page Title Bar Background Retina', 'Avada' ),
/* translators: The "Fusion Theme Options" link. */
'desc' => sprintf( esc_attr__( 'Select an image to use for retina devices. %s', 'Avada' ), Avada()->settings->get_default_description( 'page_title_bg_retina', 'url' ) ),
'dependency' => array(
array(
'field' => 'page_title_bg',
'value' => '',
'comparison' => '!=',
),
),
)
);
$avada_meta->text(
'page_title_height',
array(
'name' => __( 'Page Title Bar Height', 'Avada' ),
/* translators: The "Fusion Theme Options" link. */
'desc' => sprintf( esc_attr__( 'Set the height of the page title bar. In pixels ex: 100px. %s', 'Avada' ), Avada()->settings->get_default_description( 'page_title_height' ) ),
)
);
$avada_meta->text(
'page_title_mobile_height',
array(
'name' => __( 'Page Title Bar Mobile Height', 'Avada' ),
/* translators: The "Fusion Theme Options" link. */
'desc' => sprintf( esc_attr__( 'Set the height of the page title bar on mobile. In pixels ex: 100px. %s', 'Avada' ), Avada()->settings->get_default_description( 'page_title_mobile_height' ) ),
)
);
}
}
/* Omit closing PHP tag to avoid "Headers already sent" issues. */