| Server IP : 104.26.4.103 / Your IP : 216.73.216.4 Web Server : nginx/1.27.1 System : Linux in-5 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64 User : arabianexpress ( 1872) PHP Version : 8.0.30 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /storage/v9321/cleanlinefmsv3/public_html/wp-content/themes/clanyeco/ |
Upload File : |
<?php
/**
* Theme functions. Initializes the Vamtam Framework.
*
* @package vamtam/clanyeco
*/
define( 'VAMTAM_ENVATO_THEME_ID', 'clanyeco' );
require_once get_template_directory() . '/vamtam/classes/framework.php';
new VamtamFramework( array(
'name' => 'clanyeco',
'slug' => 'clanyeco',
) );
// only for one page home demos
function vamtam_onepage_menu_hrefs( $atts, $item, $args ) {
if ( 'custom' === $item->type && 0 === strpos( $atts['href'], '/#' ) ) {
$atts['href'] = $GLOBALS['vamtam_inner_path'] . $atts['href'];
}
return $atts;
}
if ( ( $path = parse_url( get_home_url(), PHP_URL_PATH ) ) !== null ) {
$GLOBALS['vamtam_inner_path'] = untrailingslashit( $path );
add_filter( 'nav_menu_link_attributes', 'vamtam_onepage_menu_hrefs', 10, 3 );
}
remove_action( 'admin_head', 'jordy_meow_flattr', 1 );
// this filter fixes some invalid HTML generated by the third-party plugins
add_filter( 'vamtam_escaped_shortcodes', 'vamtam_shortcode_compat_fix' );
function vamtam_shortcode_compat_fix( $codes ) {
$codes[] = 'gallery';
$codes[] = 'fl_builder_insert_layout';
$codes[] = 'wpforms';
return $codes;
}
// Envato Hosted compatibility
add_filter( 'option_' . VamtamFramework::get_purchase_code_option_key(), 'vamtam_envato_hosted_license_key' );
function vamtam_envato_hosted_license_key( $value ) {
if ( defined( 'SUBSCRIPTION_CODE' ) ) {
return SUBSCRIPTION_CODE;
}
return $value;
}
if ( class_exists( 'Vamtam_Importers_E' ) && is_callable( array( 'Vamtam_Importers_E', 'set_menu_locations' ) ) ) {
Vamtam_Importers_E::set_menu_locations();
}
// build: 857c56dddea14f79b000a33f16e34783df023b4f