| Server IP : 216.106.184.20 / Your IP : 216.73.216.234 Web Server : LiteSpeed System : Linux asmodeus.in-hell.com 5.14.0-570.58.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 29 06:24:11 EDT 2025 x86_64 User : sekoaid1 ( 1891) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/sekoaid1/www/wp-content/themes/onepress/inc/customize-configs/ |
Upload File : |
<?php
/**
* Section: Order & Styling - PLUS VERSION
*/
// Register custom section types.
$wp_customize->register_section_type( 'OnePress_Section_Plus' );
// Register sections.
$wp_customize->add_section(
'onepress_order_styling_preview',
array(
'title' => esc_html__( 'Section Order & Styling', 'onepress' ),
'priority' => 129,
)
);
// Plus message
$wp_customize->add_setting( 'onepress_order_styling_message',
array(
'sanitize_callback' => 'onepress_sanitize_text',
)
);
$wp_customize->add_control( new OnePress_Misc_Control( $wp_customize, 'onepress_order_styling_message',
array(
'type' => 'custom_message',
'section' => 'onepress_order_styling_preview',
'description' => __('<h4 class="customizer-group-heading-message">Drag & Drop Section Orders</h4><p class="customizer-group-heading-message">Check out the <a target="_blank" href="https://www.famethemes.com/plugins/onepress-plus/?utm_source=theme_customizer&utm_medium=text_link&utm_campaign=onepress_customizer#get-started">OnePress Plus</a> version for full control over the frontpage SECTIONS ORDER!</p><h4 class="customizer-group-heading-message">Advanced Section Styling</h4><p class="customizer-group-heading-message">Check out the <a target="_blank" href="https://www.famethemes.com/plugins/onepress-plus/?utm_source=theme_customizer&utm_medium=text_link&utm_campaign=onepress_customizer#get-started">OnePress Plus</a> version for full control over the section styling which includes background color, image, video, parallax effect, custom style and more ...</p>', 'onepress' )
)
));
$wp_customize->add_section(
new OnePress_Section_Plus(
$wp_customize,
'onepress-plus',
array(
'priority' => 1,
'plus_text' => __( 'OnePress Plus Available! Take a look', 'onepress' ),
'plus_url' => 'https://www.famethemes.com/plugins/onepress-plus/?utm_source=theme_customizer&utm_medium=text_link&utm_campaign=onepress_customizer#get-started'
)
)
);