Submit
Path:
~
/
home
/
getwphos
/
public_html
/
kingpanel
/
wp-content
/
themes
/
mechano
/
admin
/
File Content:
customizer-sections.php
<?php function mechano_customize_register__sections($wp_customize) { $wp_customize->add_panel( 'mechano_panel_general', array( 'title' => esc_html__('General', 'mechano'), 'description' => esc_html__('General options.', 'mechano'), 'priority' => 1 ) ); $wp_customize->add_section( 'mechano_section_layout', array( 'title' => esc_html__('Layout', 'mechano'), 'description' => esc_html__('Theme layout settings.', 'mechano'), 'panel' => 'mechano_panel_general', 'priority' => 2 ) ); $wp_customize->add_section( 'mechano_section_fonts', array( 'title' => esc_html__('Fonts', 'mechano'), 'description' => esc_html__('Theme font settings.', 'mechano'), 'panel' => 'mechano_panel_general', 'priority' => 3 ) ); $wp_customize->add_section( 'mechano_section_chars', array( 'title' => esc_html__('Characters', 'mechano'), 'description' => esc_html__('Set character sets.', 'mechano'), 'panel' => 'mechano_panel_general', 'priority' => 4 ) ); $wp_customize->add_section( 'mechano_section_colors', array( 'title' => esc_html__('Colors', 'mechano'), 'description' => esc_html__('Select theme colors.', 'mechano'), 'panel' => 'mechano_panel_general', 'priority' => 5 ) ); $wp_customize->add_section( 'mechano_section_buttons', array( 'title' => esc_html__('Buttons', 'mechano'), 'description' => esc_html__('Theme buttons settings.', 'mechano'), 'panel' => 'mechano_panel_general', 'priority' => 6 ) ); /* ================================================== */ $wp_customize->add_panel( 'mechano_panel_header', array( 'title' => esc_html__('Header', 'mechano'), 'description' => esc_html__('Theme header settings.', 'mechano'), 'priority' => 21 ) ); $wp_customize->add_section( 'mechano_section_header_general', array( 'title' => esc_html__('General', 'mechano'), 'description' => esc_html__('General header options.', 'mechano'), 'panel' => 'mechano_panel_header', 'priority' => 22 ) ); $wp_customize->add_section( 'mechano_section_header_menu', array( 'title' => esc_html__('Menu', 'mechano'), 'description' => esc_html__('Navigation menu options.', 'mechano'), 'panel' => 'mechano_panel_header', 'priority' => 23 ) ); $wp_customize->add_section( 'mechano_section_header_top_bar', array( 'title' => esc_html__('Top Bar', 'mechano'), 'description' => esc_html__('Theme top bar settings.', 'mechano'), 'panel' => 'mechano_panel_header', 'priority' => 24 ) ); $wp_customize->add_section( 'mechano_section_header_icon_box', array( 'title' => esc_html__('Icon Box', 'mechano'), 'description' => esc_html__('Theme icon box settings.', 'mechano'), 'panel' => 'mechano_panel_header', 'priority' => 25 ) ); /* ================================================== */ $wp_customize->add_section( 'mechano_section_footer', array( 'title' => esc_html__('Footer', 'mechano'), 'description' => esc_html__('Theme footer settings.', 'mechano'), 'priority' => 26 ) ); /* ================================================== */ $wp_customize->add_panel( 'mechano_panel_featured_area', array( 'title' => esc_html__('Featured Area', 'mechano'), 'description' => esc_html__('Theme featured area settings.', 'mechano'), 'priority' => 27 ) ); $wp_customize->add_section( 'mechano_section_featured_area_general', array( 'title' => esc_html__('General', 'mechano'), 'description' => esc_html__('Theme general featured area settings.', 'mechano'), 'panel' => 'mechano_panel_featured_area', 'priority' => 28 ) ); $wp_customize->add_section( 'mechano_section_featured_area_slider', array( 'title' => esc_html__('Slider', 'mechano'), 'description' => esc_html__('Go to Widgets section and add Main Slider widget to any Featured Area.', 'mechano'), 'panel' => 'mechano_panel_featured_area', 'priority' => 29 ) ); $wp_customize->add_section( 'mechano_section_featured_area_link_box', array( 'title' => esc_html__('Link Box', 'mechano'), 'description' => esc_html__('Go to Widgets section and drag and drop Link Box widgets to Blog/Page Featured Area.', 'mechano'), 'panel' => 'mechano_panel_featured_area', 'priority' => 30 ) ); $wp_customize->add_section( 'mechano_section_featured_area_intro', array( 'title' => esc_html__('Intro', 'mechano'), 'description' => esc_html__('Go to Widgets section and drag and drop Intro widget to Blog/Page Featured Area.', 'mechano'), 'panel' => 'mechano_panel_featured_area', 'priority' => 31 ) ); /* ================================================== */ $wp_customize->add_section( 'mechano_section_pages', array( 'title' => esc_html__('Pages', 'mechano'), 'description' => esc_html__('Default page options.', 'mechano'), 'priority' => 32 ) ); $wp_customize->add_section( 'mechano_section_blog', array( 'title' => esc_html__('Blog', 'mechano'), 'description' => esc_html__('Blog page options.', 'mechano'), 'priority' => 33 ) ); $wp_customize->add_section( 'mechano_section_post', array( 'title' => esc_html__('Single Post', 'mechano'), 'description' => esc_html__('Individual post options.', 'mechano'), 'priority' => 34 ) ); /* ================================================== */ $wp_customize->add_panel( 'mechano_panel_meta', array( 'title' => esc_html__('Meta', 'mechano'), 'description' => esc_html__('Meta options.', 'mechano'), 'priority' => 35 ) ); $wp_customize->add_section( 'mechano_section_meta_style', array( 'title' => esc_html__('Style', 'mechano'), 'description' => esc_html__('Meta style options.', 'mechano'), 'panel' => 'mechano_panel_meta', 'priority' => 36 ) ); $wp_customize->add_section( 'mechano_section_meta_blog', array( 'title' => esc_html__('Blog Meta', 'mechano'), 'description' => esc_html__('Blog meta options.', 'mechano'), 'panel' => 'mechano_panel_meta', 'priority' => 37 ) ); $wp_customize->add_section( 'mechano_section_meta_post', array( 'title' => esc_html__('Single Post Meta', 'mechano'), 'description' => esc_html__('Post meta options.', 'mechano'), 'panel' => 'mechano_panel_meta', 'priority' => 38 ) ); /* ================================================== */ $wp_customize->add_section( 'mechano_section_sidebar', array( 'title' => esc_html__('Sidebar', 'mechano'), 'description' => esc_html__('Theme sidebar settings.', 'mechano'), 'priority' => 39 ) ); $wp_customize->add_section( 'mechano_section_portfolio', array( 'title' => esc_html__('Portfolio', 'mechano'), 'description' => esc_html__('Portfolio page options.', 'mechano'), 'priority' => 40 ) ); $wp_customize->add_section( 'mechano_section_shop', array( 'title' => esc_html__('Shop', 'mechano'), 'description' => esc_html__('Shop page options.', 'mechano'), 'priority' => 41 ) ); /* ================================================== */ $wp_customize->add_panel( 'widgets', array( 'title' => esc_html__('Widgets', 'mechano'), 'description' => esc_html__('Widgets are independent sections of content that can be placed into widgetized areas provided by your theme (commonly called sidebars).', 'mechano'), 'priority' => 99 ) ); } add_action('customize_register', 'mechano_customize_register__sections'); function mechano_sanitize($value) { return $value; }
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
css
---
0755
demo-data
---
0755
js
---
0755
plugins
---
0755
about-author.php
1412 bytes
0644
admin--class-tgm-plugin-activation.php
126853 bytes
0644
admin--demo-import.php
10565 bytes
0644
admin--help-tab.php
2049 bytes
0644
admin--notice.php
9889 bytes
0644
archive-title.php
3072 bytes
0644
content-none.php
1105 bytes
0644
customizer-default-values.php
3280 bytes
0644
customizer-sections.php
8509 bytes
0644
customizer-settings.php
262878 bytes
0644
enqueue-inline-script.php
2601 bytes
0644
enqueue-inline-style.php
66490 bytes
0644
enqueue-styles-scripts.php
13122 bytes
0644
functions-core.php
8160 bytes
0644
functions-layout-grid.php
1082 bytes
0644
functions-layout-regular.php
802 bytes
0644
functions-portfolio.php
2917 bytes
0644
functions-singular.php
13678 bytes
0644
functions-woocommerce.php
4674 bytes
0644
html-attributes.php
18503 bytes
0644
image-sizes.php
1986 bytes
0644
index.php
30 bytes
0644
navigation-archive.php
1231 bytes
0644
navigation-single.php
4441 bytes
0644
override-post-class.php
1447 bytes
0644
override-post-gallery.php
7368 bytes
0644
post-meta.php
7608 bytes
0644
pre-get-posts.php
353 bytes
0644
theme-options.php
11646 bytes
0644
widget_area-register.php
10228 bytes
0644
widget_area-sidebar-singular.php
7161 bytes
0644
N4ST4R_ID | Naxtarrr