| Server IP : 77.68.64.21 / Your IP : 216.73.217.145 Web Server : Apache System : Linux hp3-wp-1011352.hostingp3.local 3.10.0-1160.144.1.el7.tuxcare.els9.x86_64 #1 SMP Fri Jul 10 17:06:31 UTC 2026 x86_64 User : csh2516497 ( 2094697) PHP Version : 8.3.30 Disable Function : shell_exec,exec,system,popen,set_time_limit MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/domains/vol2/104/3056104/user/htdocs/wp-content/plugins/arile-extra/inc/arilewp/ |
Upload File : |
<?php
/**
* @package arile-extra
*/
require arile_extra_plugin_dir . 'inc/arilewp/customizer/extra-arilewp-customizer.php';
require arile_extra_plugin_dir . 'inc/arilewp/customizer/extra-arilewp-customizer-options.php';
require arile_extra_plugin_dir . 'inc/arilewp/customizer/extra-arilewp-customizer-default.php';
if ( ! function_exists( 'arileextra_arilewp_frontpage_sections' ) ) :
function arileextra_arilewp_frontpage_sections() {
$activate_theme_data = wp_get_theme(); // getting current theme data
$activate_theme = $activate_theme_data->name;
if('StrangerWP' == $activate_theme || 'NewYork City' == $activate_theme || 'InteriorPress' == $activate_theme || 'Architect Design' == $activate_theme || 'Ariletech' == $activate_theme || 'DecorPress' == $activate_theme || 'Fresno' == $activate_theme || 'DesignHub' == $activate_theme || 'InnoPress' == $activate_theme || 'Agency Street' == $activate_theme || 'Roseville Blog' == $activate_theme || 'Interior Startup' == $activate_theme || 'Sayre' == $activate_theme || 'Agency Firm' == $activate_theme || 'Interior Space' == $activate_theme || 'Hague Firm' == $activate_theme || 'Interior Craft' == $activate_theme || 'Elmira' == $activate_theme){
require arile_extra_plugin_dir . 'inc/arilewp/front-page/extra-strangerwp-slider.php';
}else{
require arile_extra_plugin_dir . 'inc/arilewp/front-page/extra-arilewp-slider.php';
}
if('NewYork City' != $activate_theme && 'InteriorPress' != $activate_theme && 'DecorPress' != $activate_theme && 'Alberta' != $activate_theme && 'Interior Startup' != $activate_theme && 'Interior Space' != $activate_theme){
require arile_extra_plugin_dir . 'inc/arilewp/front-page/extra-arilewp-siteinfo.php';
}
require arile_extra_plugin_dir . 'inc/arilewp/front-page/extra-arilewp-service.php';
require arile_extra_plugin_dir . 'inc/arilewp/front-page/extra-arilewp-project.php';
if('Business Street' == $activate_theme ){
require arile_extra_plugin_dir . 'inc/arilewp/front-page/extra-arilewp-blog.php';
require arile_extra_plugin_dir . 'inc/arilewp/front-page/extra-arilewp-testimonial.php';
}else{
require arile_extra_plugin_dir . 'inc/arilewp/front-page/extra-arilewp-testimonial.php';
require arile_extra_plugin_dir . 'inc/arilewp/front-page/extra-arilewp-blog.php';
}
}
add_action( 'arileextra_arilewp_frontpage', 'arileextra_arilewp_frontpage_sections' );
endif;
if ( ! function_exists( 'arileextra_strangerwp_blog_sections' ) ) :
function arileextra_strangerwp_blog_sections() {
$activate_theme_data = wp_get_theme(); // getting current theme data
$activate_theme = $activate_theme_data->name;
if('StrangerWP' == $activate_theme){
require arile_extra_plugin_dir . 'inc/arilewp/front-page/extra-strangerwp-slider.php';
}
}
add_action( 'arileextra_stranger_blogpage', 'arileextra_strangerwp_blog_sections' );
endif;