<?php
/**
*
* @package tx
* @author theme-x
* @link https://theme-x.org/
*
*/
defined( 'ABSPATH' ) || exit;
if ( ! class_exists( 'Redux' ) ) {
return;
}
// Used to execept HTML tags in description arguments where esc_html would remove.
$kses_exceptions = array(
'a' => array(
'href' => array(),
),
'strong' => array(),
'br' => array(),
'code' => array(),
);
/*
* ---> BEGIN ARGUMENTS
*/
/**
* All the possible arguments for Redux.
* For full documentation on arguments, please refer to: https://docs.redux.io/core/arguments/
*/
// This is your option name where all the Redux data is stored.
$opt_name = "tx";
$theme = wp_get_theme(); // For use with some settings. Not necessary.
$args = array(
// TYPICAL -> Change these values as you need/desire
'opt_name' => $opt_name,
// This is where your data is stored in the database and also becomes your global variable name.
'display_name' => $theme->get( 'Name' ),
// Name that appears at the top of your panel
'display_version' => $theme->get( 'Version' ),
// Version that appears at the top of your panel
'menu_type' => 'menu',
//Specify if the admin menu should appear or not. Options: menu or submenu (Under appearance only)
'allow_sub_menu' => false,
// Show the sections below the admin menu item or not
'menu_title' => esc_html__( 'Theme Options', 'avas' ),
'page_title' => esc_html__( 'Theme Options', 'avas' ),
'async_typography' => false,
// Use a asynchronous font on the front end or font string
'disable_google_fonts_link' => false, // Disable this in case you want to create your own google fonts loader
'admin_bar' => true,
// Show the panel pages on the admin bar
'admin_bar_icon' => 'dashicons-menu',
// Choose an icon for the admin bar menu
'admin_bar_priority' => 40,
// Choose an priority for the admin bar menu
'global_variable' => '',
// Set a different name for your global variable other than the opt_name
'dev_mode' => false,
// Show the time the page took to load, etc
'customizer' => true,
// Enable basic customizer support
'open_expanded' => false, // Allow you to start the panel in an expanded way initially.
'disable_save_warn' => false, // Disable the save warning when a user changes a field
// OPTIONAL -> Give you extra features
'page_priority' => 61,
// Order where the menu appears in the admin area. If there is any conflict, something will not show. Warning.
'page_parent' => 'themes.php',
// For a full list of options, visit: http://codex.wordpress.org/Function_Reference/add_submenu_page#Parameters
'page_permissions' => 'manage_options',
// Permissions needed to access the options panel.
'menu_icon' => TX_IMAGES.'icon.png',
// Specify a custom URL to an icon
'last_tab' => '',
// Force your panel to always open to a specific tab (by id)
'page_icon' => 'icon-themes',
// Icon displayed in the admin panel next to your menu_title
'page_slug' => '',
// Page slug used to denote the panel, will be based off page title then menu title then opt_name if not provided
'save_defaults' => true,
// On load save the defaults to DB before user clicks save or not
'default_show' => false,
// If true, shows the default value next to each field that is not the default value.
'default_mark' => '',
// What to print by the field's title if the value shown is default. Suggested: *
'show_import_export' => true,
// Shows the Import/Export panel when not used as a field.
// CAREFUL -> These options are for advanced use only
'transient_time' => 60 * MINUTE_IN_SECONDS,
'output' => true,
// Global shut-off for dynamic CSS output by the framework. Will also disable google fonts output
'output_tag' => true,
// Allows dynamic CSS to be generated for customizer and google fonts, but stops the dynamic CSS from going to the head
'footer_credit' => '', // Disable the footer credit of Redux. Please leave if you can help it.
// FUTURE -> Not in use yet, but reserved or partially implemented. Use at your own risk.
'database' => '',
// possible: options, theme_mods, theme_mods_expanded, transient. Not fully functional, warning!
'network_admin' => true,
'use_cdn' => false,
// If you prefer not to use the CDN for Select2, Ace Editor, and others, you may download the Redux Vendor Support plugin yourself and run locally or embed it in your code.
// Set the theme of the option panel. Use 'classic' to revert to the Redux 3 style.
'admin_theme' => 'wp',
// HINTS
'hints' => array(
'icon' => 'el el-question-sign',
'icon_position' => 'right',
'icon_color' => 'lightgray',
'icon_size' => 'normal',
'tip_style' => array(
'color' => 'red',
'shadow' => true,
'rounded' => false,
'style' => '',
),
'tip_position' => array(
'my' => 'top left',
'at' => 'bottom right',
),
'tip_effect' => array(
'show' => array(
'effect' => 'slide',
'duration' => '500',
'event' => 'mouseover',
),
'hide' => array(
'effect' => 'slide',
'duration' => '500',
'event' => 'click mouseleave',
),
),
)
);
// SOCIAL ICONS -> Setup custom links in the footer for quick links in your panel footer icons.
$args['share_icons'][] = array(
'url' => esc_url('https://avas.live/'),
'title' => esc_html__('Visit our website', 'avas'),
'icon' => 'el el-globe-alt'
);
$args['share_icons'][] = array(
'url' => esc_url('https://avas.live/documentation'),
'title' => esc_html__('Check our documentation', 'avas'),
'icon' => 'el el-file'
);
$args['share_icons'][] = array(
'url' => esc_url('https://www.youtube.com/c/AvasWordPressTheme'),
'title' => esc_html__('Watch video tutorials on Youtube', 'avas'),
'icon' => 'el el-youtube'
);
$args['share_icons'][] = array(
'url' => esc_url('https://www.facebook.com/avas.wordpress.theme'),
'title' => esc_html__('Like us on Facebook', 'avas'),
'icon' => 'el el-facebook'
);
$args['share_icons'][] = array(
'url' => esc_url('https://twitter.com/AvasTheme'),
'title' => esc_html__('Follow us on Twitter', 'avas'),
'icon' => 'el el-twitter'
);
Redux::setArgs( $opt_name, $args );
/*
* ---> END ARGUMENTS
*/
/*
*
* ---> START SECTIONS
*
*/
/*
As of Redux 3.5+, there is an extensive API. This API can be used in a mix/match mode allowing for
*/
// Global Options
Redux::setSection( $opt_name, array(
'title' => esc_html__( 'Global', 'avas' ),
'id' => 'global',
'customizer_width' => '344px',
'icon'
没有合适的资源?快使用搜索试试~ 我知道了~
【WordPress主题】2022年最新版完整功能demo+插件v6.3.4.1 Untouched.zip
共293个文件
php:159个
css:39个
png:31个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 68 浏览量
2022-04-21
04:19:18
上传
评论
收藏 7.88MB ZIP 举报
温馨提示
"【WordPress主题】2022年最新版完整功能demo+插件v6.3.4.1 Untouched Avas - Multi-Purpose WordPress Theme AVAS - 多功能WordPress主题" ---------- 泰森云每天更新发布最新WordPress主题、HTML主题、WordPress插件、shopify主题、opencart主题、PHP项目源码、安卓项目源码、ios项目源码,更有超10000个资源可供选择,如有需要请站内联系。
资源推荐
资源详情
资源评论
收起资源包目录
【WordPress主题】2022年最新版完整功能demo+插件v6.3.4.1 Untouched.zip (293个子文件)
bootstrap.min.css 156KB
main.css 76KB
fontawesome.min.css 57KB
main.min.css 56KB
bootstrap-icons.min.css 56KB
learnpress.css 34KB
font-awesome.min.css 30KB
learnpress.min.css 26KB
rtl.css 15KB
woocommerce.css 14KB
portfolio.css 13KB
rtl.min.css 11KB
portfolio.min.css 11KB
woocommerce.min.css 11KB
admin.css 9KB
event.css 7KB
bbpress.css 6KB
admin.min.css 6KB
magnific-popup.min.css 6KB
team.css 6KB
event.min.css 6KB
lightslider.min.css 5KB
wpc-smart.css 5KB
cf7.css 5KB
bbpress.min.css 5KB
flexslider.min.css 4KB
team.min.css 4KB
cf7.min.css 4KB
wpc-smart.min.css 4KB
services.css 4KB
owl.carousel.min.css 3KB
services.min.css 3KB
login.css 2KB
estatik.css 2KB
login.min.css 1KB
estatik.min.css 1KB
brands.min.css 675B
darkmode.min.css 280B
style.css 280B
fa-solid-900.eot 198KB
fontawesome-webfont.eot 162KB
fa-brands-400.eot 131KB
line-awesome.eot 110KB
fa-regular-400.eot 33KB
flexslider-icon.eot 2KB
ajax-loader.gif 3KB
screenshot.jpg 86KB
brochure.jpg 12KB
h_a.jpg 7KB
300x250.jpg 3KB
owl.carousel.js 91KB
isotope.pkgd.js 90KB
bootstrap.min.js 59KB
jquery.flexslider.js 57KB
lightslider.js 51KB
owl.carousel.min.js 44KB
cookieconsent.min.js 43KB
jquery.magnific-popup.js 41KB
isotope.pkgd.min.js 35KB
jquery.flexslider.min.js 23KB
jquery.magnific-popup.min.js 20KB
lightslider.min.js 17KB
imagesloaded.pkgd.js 13KB
darkmode.min.js 7KB
imagesloaded.pkgd.min.js 6KB
main.js 4KB
main.min.js 2KB
sPreloader.min.js 2KB
mega-menu.min.js 947B
login.min.js 846B
admin.js 624B
admin.min.js 311B
ar.mo 2KB
FontAwesome.otf 132KB
theme-options.php 392KB
class-tgm-plugin-activation.php 126KB
import-files.php 51KB
mega-menu.php 36KB
class-updates.php 35KB
import-slider.php 35KB
import.php 34KB
functions.php 22KB
sub-header.php 21KB
functions.php 20KB
dynamic-style.php 17KB
lp-functions.php 13KB
portfolio.php 11KB
woo-functions.php 8KB
custom-sidebars.php 8KB
welcome.php 7KB
updates.php 7KB
services.php 6KB
enqueue.php 6KB
post-meta.php 6KB
top-header.php 5KB
form-user-edit.php 5KB
single-portfolio-full-width.php 5KB
single-post-full-width.php 5KB
blog-two-columns.php 5KB
single-portfolio.php 5KB
共 293 条
- 1
- 2
- 3
资源评论
Lee达森
- 粉丝: 1518
- 资源: 1万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- (源码)基于JavaFX和MySQL的医院挂号管理系统.zip
- (源码)基于IdentityServer4和Finbuckle.MultiTenant的多租户身份认证系统.zip
- (源码)基于Spring Boot和Vue3+ElementPlus的后台管理系统.zip
- (源码)基于C++和Qt框架的dearoot配置管理系统.zip
- (源码)基于 .NET 和 EasyHook 的虚拟文件系统.zip
- (源码)基于Python的金融文档智能分析系统.zip
- (源码)基于Java的医药管理系统.zip
- (源码)基于Java和MySQL的学生信息管理系统.zip
- (源码)基于ASP.NET Core的零售供应链管理系统.zip
- (源码)基于PythonSpleeter的戏曲音频处理系统.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功