/
home
/
rekodeb
/
osteo
/
wp-content
/
themes
/
zuperla
/
includes
/
admin
/
Upload File
HOME
<?php /** * Euthemians Redux Extension Loader * @version 1.0 * @author Euthemians Team * @URI http://euthemians.com * */ function zuperla_eutf_ace_cdn_fix( $args ) { return get_template_directory_uri() . '/includes/js/ace_editor/ace.js'; } add_filter("redux/zuperla_eutf_options/fields/ace/script", 'zuperla_eutf_ace_cdn_fix' ); add_filter("redux/zuperla_eutf_optionsfields/ace/script", 'zuperla_eutf_ace_cdn_fix' ); if ( !function_exists( 'redux_custom_section_menu' ) ) { function redux_custom_section_menu( $current, $k, array $section, string $suffix = '', array $sections = array()) { return $current->parent->render_class->section_menu( $k, $section, $suffix, $sections ); } } //Omit closing PHP tag to avoid accidental whitespace output errors.