'; $cat = wp_get_post_categories($post->ID); $k = count($cat); foreach ($cat as $c) { $categories = get_category($c); $k -= 1; if ($k == 0) { echo '' . esc_html($categories->name) . ''; } else { echo '' . esc_html($categories->name) . ', '; } } echo ''; } } if (! function_exists('maia_tbay_full_top_meta')) { function maia_tbay_full_top_meta($post) { // format $post_format = get_post_format(); $header_class = $post_format ? '' : 'border-left'; echo '
'; if (!is_single()) { the_title('

', '

'); } // details $id = get_the_author_meta('ID'); echo ''; // comments echo ''. esc_html__('In:', 'maia') .' '; $cat = wp_get_post_categories($post->ID); $k = count($cat); foreach ($cat as $c) { $categories = get_category($c); $k -= 1; if ($k == 0) { echo '' . esc_html($categories->name) . ''; } else { echo '' . esc_html($categories->name) . ', '; } } echo ''; if (! is_search()) { if (! post_password_required() && (comments_open() || get_comments_number())) { echo ''; comments_popup_link('0', '1', '%'); echo ''; } } echo '
'; } } if (! function_exists('maia_tbay_post_tags')) { function maia_tbay_post_tags() { $posttags = get_the_tags(); if ($posttags) { echo '
'; $size = count($posttags); $space = ''; $i = 0; foreach ($posttags as $tag) { echo ''; if (++$i === $size) { $space =''; } echo trim($tag->name).trim($space); echo ''; } echo '
'; } } add_action('maia_tbay_post_tag_socials', 'maia_tbay_post_tags', 10); } if (! function_exists('maia_tbay_post_info_author')) { function maia_tbay_post_info_author() { $author_id = maia_tbay_get_id_author_post(); if ( maia_redux_framework_activated() ) { ?>

%3$s', esc_url(get_author_posts_url($author_id, get_the_author())), /* translators: %s: Author's display name. */ esc_attr(get_the_author()), esc_html__('All Author Posts', 'maia') ); ?>
post_title; $content = $post->post_content; } $link = maia_tbay_get_first_url_from_string($content); if (! empty($link)) { $title = '' . $title . ''; $content = str_replace($link, '', $content); } else { $pattern = '/^\](.*?)>(.*?)<\/a>/i'; preg_match($pattern, $content, $link); if (! empty($link[0]) && ! empty($link[2])) { $title = $link[0]; $content = str_replace($link[0], '', $content); } elseif (! empty($link[0]) && ! empty($link[1])) { $atts = shortcode_parse_atts($link[1]); $target = (! empty($atts['target'])) ? $atts['target'] : '_self'; $title = (! empty($atts['title'])) ? $atts['title'] : $title; $title = '' . $title . ''; $content = str_replace($link[0], '', $content); } else { $title = '' . $title . ''; } } $out['title'] = '

' . $title . '

'; $out['content'] = $content; return $out; } } if (! function_exists('maia_tbay_breadcrumbs')) { function maia_tbay_breadcrumbs() { $delimiter = ''; $home = esc_html__('Home', 'maia'); $before = '
  • '; $after = '
  • '; $title = ''; if (!is_front_page() || is_paged()) { echo ''; } } } if (! function_exists('maia_tbay_get_title_bottom')) { function maia_tbay_get_title_bottom() { global $post; $title_bottom = ''; if (is_home() && !is_front_page()) { $title_bottom = '

    '. esc_html__('Blog', 'maia') .'

    '; } if (is_category()) { $title_bottom = '

    '. single_cat_title('', false) .'

    '; } elseif (is_tag()) { $title_bottom = '

    '. get_the_archive_title() . '

    '; } elseif (is_archive()) { $title_bottom = '

    '. get_the_archive_title() . '

    '; } elseif (is_search()) { $title_bottom = '

    '. esc_html__('Search results for "', 'maia') . get_search_query() . '"

    '; } elseif (is_author()) { global $author; $userdata = get_userdata($author); $title_bottom = '

    '. esc_html__('Articles posted by "', 'maia') . esc_html($userdata->display_name) . '"

    '; } elseif (!is_single() && !is_page() && get_post_type() != 'post' && !is_404()) { $post_type = get_post_type_object(get_post_type()); if (is_object($post_type)) { $title_bottom = '

    '. $post_type->labels->singular_name . '

    '; } } elseif ((is_page() && $post->post_parent) || (is_page() && !$post->post_parent) || is_attachment() ) { if ( !empty(get_the_title()) ) { $title_bottom = '

    '. get_the_title() . '

    '; } } elseif ( is_single() ) { $title_bottom = ''; } return $title_bottom; } } if (! function_exists('maia_tbay_render_breadcrumbs')) { function maia_tbay_render_breadcrumbs() { if( maia_checkout_optimized() || is_attachment() ) return; global $post; $show = true; $img = ''; $style = array(); $breadcrumbs_layout = maia_tbay_get_config('blog_breadcrumb_layout', 'image'); if (isset($post->ID) && !empty(get_post_meta($post->ID, 'tbay_page_breadcrumbs_layout', true))) { $breadcrumbs_layout = get_post_meta($post->ID, 'tbay_page_breadcrumbs_layout', true); } if (isset($_GET['breadcrumbs_layout'])) { $breadcrumbs_layout = $_GET['breadcrumbs_layout']; } $title_bottom = maia_tbay_get_title_bottom(); switch ($breadcrumbs_layout) { case 'image': $breadcrumbs_class = ' breadcrumbs-image'; break; case 'color': $breadcrumbs_class = ' breadcrumbs-color'; break; case 'text': $breadcrumbs_class = ' breadcrumbs-text'; break; default: $breadcrumbs_class = ' breadcrumbs-image'; } if (is_singular('post') || is_category() || is_home() || is_tag() || is_author() || is_day() || is_month() || is_year() || is_search()) { $breadcrumb_layout_img = maia_tbay_get_config('blog_breadcrumb_layout_image'); $breadcrumb_layout_color = maia_tbay_get_config('blog_breadcrumb_layout_color'); $style = array(); if ($breadcrumb_layout_color && $breadcrumbs_layout ==='color' ) { $style[] = 'background-color:'.$breadcrumb_layout_color; } if (isset($breadcrumb_layout_img['url']) && !empty($breadcrumb_layout_img['url']) && $breadcrumbs_layout ==='image') { $img = ' '. esc_attr__('breadcrumb', 'maia') .' '; } } $nav = ''; if ($breadcrumbs_layout !== 'image') { if (!maia_tbay_is_home_page()) { $breadcrumbs_class .= ' active-nav-right'; } if (!maia_tbay_is_home_page() && isset($post->ID) && !empty(get_the_title($post->ID) && is_page())) { $title_bottom = '

    '. get_the_title($post->ID) .'

    '; $breadcrumbs_class .= ' show-title'; } if (is_category() || is_author()) { $breadcrumbs_class .= ' show-title'; } if (is_archive()) { $breadcrumbs_class .= ' blog'; } } if (class_exists('WooCommerce') && (is_edit_account_page() || is_add_payment_method_page() || is_lost_password_page() || is_account_page() || is_view_order_page())) { $breadcrumbs_class = trim(str_replace('show-title', '', $breadcrumbs_class)); } $estyle = !empty($style)? ' style="'.implode(";", $style).'"':""; if ( !maia_redux_framework_activated() ) { if (!maia_tbay_is_home_page() && !empty($title_bottom)) { echo '
    '. trim($title_bottom) . '
    '; } return ''; } if (is_page() && is_object($post)) { $show = get_post_meta($post->ID, 'tbay_page_show_breadcrumb', true); if ( isset($show) ) { if( $show != 'yes' ) { if (!maia_tbay_is_home_page() && !empty($title_bottom)) { echo '
    '. trim($title_bottom) . '
    '; } return ''; } else { $bgimage = get_post_meta($post->ID, 'tbay_page_breadcrumb_image', true); $bgcolor = get_post_meta($post->ID, 'tbay_page_breadcrumb_color', true); if ($bgcolor && $breadcrumbs_layout ==='color') { $style[] = 'background-color:'.$bgcolor; } if ($bgimage && $breadcrumbs_layout ==='image') { $img = ' '. esc_attr__('breadcrumb', 'maia') .' '; } $estyle = !empty($style)? ' style="'.implode(";", $style).'"':""; if ($breadcrumbs_layout !== 'image') { echo '
    '; maia_tbay_breadcrumbs() ; echo ''. trim($nav) . '
    '; if (!maia_tbay_is_home_page() && !empty($title_bottom)) { echo '
    '. trim($title_bottom) . '
    '; } return ''; } else { echo '
    '. trim($img) .'
    '. trim($title_bottom); maia_tbay_breadcrumbs() ; echo ''. trim($nav) .'
    '; } } } } else { $show = maia_tbay_get_config('show_blog_breadcrumb', false); if ($show || !empty($title_bottom)) { echo '
    '. trim($img) .'
    '; if ($breadcrumbs_layout === 'image') { echo trim($title_bottom); } if ( $show ) { maia_tbay_breadcrumbs(); } echo ''. trim($nav) .'
    '; if ($breadcrumbs_layout !== 'image' && !empty($title_bottom) ) { echo '
    '. trim($title_bottom) .'
    '; } } } } } if (! function_exists('maia_tbay_paging_nav')) { function maia_tbay_paging_nav() { global $wp_query, $wp_rewrite; if ($wp_query->max_num_pages < 2) { return; } $paged = get_query_var('paged') ? intval(get_query_var('paged')) : 1; $pagenum_link = html_entity_decode(get_pagenum_link()); $query_args = array(); $url_parts = explode('?', $pagenum_link); if (isset($url_parts[1])) { wp_parse_str($url_parts[1], $query_args); } $pagenum_link = remove_query_arg(array_keys($query_args), $pagenum_link); $pagenum_link = trailingslashit($pagenum_link) . '%_%'; $format = $wp_rewrite->using_index_permalinks() && ! strpos($pagenum_link, 'index.php') ? 'index.php/' : ''; $format .= $wp_rewrite->using_permalinks() ? user_trailingslashit($wp_rewrite->pagination_base . '/%#%', 'paged') : '?paged=%#%'; // Set up paginated links. $links = paginate_links(array( 'base' => $pagenum_link, 'format' => $format, 'total' => $wp_query->max_num_pages, 'current' => $paged, 'mid_size' => 1, 'add_args' => array_map('urlencode', $query_args), 'prev_text' => '', 'next_text' => '' )); if ($links) : ?> post_parent) : get_adjacent_post(false, '', true); $next = get_adjacent_post(false, '', false); if (! $next && ! $previous) { return; } $prevPost = get_previous_post(); $nextPost = get_next_post(); $cat_prevPost = $cat_nextPost = ''; if (is_object($prevPost)) { $prevthumbnail = get_the_post_thumbnail($prevPost->ID, 'maia_avatar_post_carousel'); $cat_prevPost = get_the_category($prevPost->ID)[0]->name; } if (is_object($nextPost)) { $nextthumbnail = get_the_post_thumbnail($nextPost->ID, 'maia_avatar_post_carousel'); $cat_nextPost = get_the_category($nextPost->ID)[0]->name; } ?>
    'pull-left'); $wp_query->query_vars['paged'] > 1 ? $current = $wp_query->query_vars['paged'] : $current = 1; if (empty($pages)) { global $wp_query; $pages = $wp_query->max_num_pages; if (!$pages) { $pages = 1; } } $pagination = array( 'base' => @add_query_arg('paged', '%#%'), 'format' => '', 'total' => $pages, 'current' => $current, 'prev_text' => $prev, 'next_text' => $next, 'type' => 'array' ); if ($wp_rewrite->using_permalinks()) { $pagination['base'] = user_trailingslashit(trailingslashit(remove_query_arg('s', get_pagenum_link(1))) . 'page/%#%/', 'paged'); } if (isset($_GET['s'])) { $cq = $_GET['s']; $sq = str_replace(" ", "+", $cq); } if (!empty($wp_query->query_vars['s'])) { $pagination['add_args'] = array( 's' => $sq); } $paginations = paginate_links($pagination); if (!empty($paginations)) { echo ''; } ?>
    $link_img) { $image = wp_get_attachment_image_src($id_img, $size); $output[] = $image[0]; } } } return $output; } } if (!function_exists('maia_tbay_comment_form')) { function maia_tbay_comment_form($arg, $class = 'btn-primary btn-outline ') { global $post; if ('open' == $post->comment_status) { ob_start(); comment_form($arg); $form = ob_get_clean(); ?>
    $header, 'post_type' => 'tbay_custom_post', 'post_status' => 'publish', 'numberposts' => 1 ); $posts = get_posts($args); return ( !empty($posts[0]->ID) ) ? $posts[0]->ID : ''; } } if (!function_exists('maia_get_display_header_builder')) { function maia_get_display_header_builder() { $id = maia_get_header_id(); return maia_get_html_custom_post($id); } } if (!function_exists('maia_get_footer_id')) { function maia_get_footer_id() { $footer = apply_filters('maia_tbay_get_footer_layout', 'footer_default'); $args = array( 'name' => $footer, 'post_type' => 'tbay_custom_post', 'post_status' => 'publish', 'numberposts' => 1 ); $posts = get_posts($args); return ( !empty($posts[0]->ID) ) ? $posts[0]->ID : ''; } } if (!function_exists('maia_get_display_footer_builder')) { function maia_get_display_footer_builder() { $id = maia_get_footer_id(); return maia_get_html_custom_post($id); } } if( ! function_exists( 'maia_get_html_custom_post' ) ) { function maia_get_html_custom_post($id) { if( is_null($id) || empty($id) ) return; $post = get_post( $id ); if ( maia_elementor_activated() && Elementor\Plugin::instance()->documents->get( $id )->is_built_with_elementor() ) { return Elementor\Plugin::instance()->frontend->get_builder_content_for_display($id, maia_get_elementor_css_print_method()); } else { return do_shortcode($post->post_content); } } } if (!function_exists('maia_tbay_display_footer_builder')) { function maia_tbay_display_footer_builder() { echo maia_get_display_footer_builder(); } } if (!function_exists('maia_tbay_get_random_blog_cat')) { function maia_tbay_get_random_blog_cat() { $post_category = ""; $categories = get_the_category(); $number = rand(0, count($categories) - 1); if ($categories) { $post_category .= 'name)) . '">'.$categories[$number]->cat_name.''; } echo trim($post_category); } } if (!function_exists('maia_tbay_get_id_author_post')) { function maia_tbay_get_id_author_post() { global $post; $author_id = $post->post_author; if (isset($author_id)) { return $author_id; } } } if (! function_exists('maia_active_mobile_footer_icon')) { function maia_active_mobile_footer_icon() { $active = maia_tbay_get_config('mobile_footer_icon', true); if ($active) { return true; } else { return false; } } } if (! function_exists('maia_body_class_mobile_footer')) { function maia_body_class_mobile_footer($classes) { $mobile_footer = maia_tbay_get_config('mobile_footer', true); if (isset($mobile_footer) && !$mobile_footer) { $classes[] = 'mobile-hidden-footer-desktop'; } else { $classes[] = 'mobile-show-footer-desktop'; } if (!maia_active_mobile_footer_icon()) { $classes[] = 'mobile-hidden-footer-icon'; } else { $classes[] = 'mobile-show-footer-icon'; } return $classes; } add_filter('body_class', 'maia_body_class_mobile_footer', 99); } if (!function_exists('maia_tbay_comment_form_fields_open')) { function maia_move_comment_field_to_bottom( $fields ) { $comment_field = $fields['comment']; $comment_cookies = $fields['cookies']; unset( $fields['comment'] ); unset( $fields['cookies'] ); $fields['comment'] = $comment_field; $fields['cookies'] = $comment_cookies; return $fields; } add_filter( 'comment_form_fields', 'maia_move_comment_field_to_bottom', 10, 1 ); } //Add div wrapper author and name in comment form if (!function_exists('maia_tbay_comment_form_fields_open')) { function maia_tbay_comment_form_fields_open() { echo '
    '; } } if (!function_exists('maia_tbay_comment_form_fields_close')) { function maia_tbay_comment_form_fields_close() { echo '
    '; } } add_action('comment_form_before_fields', 'maia_tbay_comment_form_fields_open'); add_action('comment_form_after_fields', 'maia_tbay_comment_form_fields_close'); if (!function_exists('maia_the_post_category_full')) { function maia_the_post_category_full($has_separator = true) { $post_category = ""; $categories = get_the_category(); $separator = ($has_separator) ? ',' : ''; $output = ''; if ($categories) { foreach ($categories as $category) { $output .= ''.$category->cat_name.''.$separator; } $post_category = trim($output, $separator); } echo trim($post_category); } } //Check active WPML if (!function_exists('maia_tbay_wpml')) { function maia_tbay_wpml() { if (is_active_sidebar('wpml-sidebar')) { dynamic_sidebar('wpml-sidebar'); } } add_action('maia_tbay_header_custom_language', 'maia_tbay_wpml', 10); } //Config Layout Blog if (!function_exists('maia_tbay_get_blog_layout_configs')) { function maia_tbay_get_blog_layout_configs() { if (!is_singular('post')) { $page = 'blog_archive_sidebar'; } else { $page = 'blog_single_sidebar'; } $sidebar = maia_tbay_get_config($page); if (!is_singular('post')) { $blog_archive_layout = (isset($_GET['blog_archive_layout'])) ? $_GET['blog_archive_layout'] : maia_tbay_get_config('blog_archive_layout', 'main-right'); if (isset($blog_archive_layout)) { switch ($blog_archive_layout) { case 'left-main': $configs['sidebar'] = array( 'id' => $sidebar, 'class' => 'col-12 col-xl-3' ); $configs['main'] = array( 'class' => 'col-xl-9' ); break; case 'main-right': $configs['sidebar'] = array( 'id' => $sidebar, 'class' => 'col-12 col-xl-3' ); $configs['main'] = array( 'class' => 'col-xl-9' ); break; case 'main': $configs['main'] = array( 'class' => '' ); break; default: $configs['main'] = array( 'class' => '' ); break; } if (($blog_archive_layout === 'left-main' || $blog_archive_layout === 'main-right') && (empty($configs['sidebar']['id']) || !is_active_sidebar($configs['sidebar']['id']))) { $configs['main'] = array( 'class' => '' ); } } } else { $blog_single_layout = (isset($_GET['blog_single_layout'])) ? $_GET['blog_single_layout'] : maia_tbay_get_config('blog_single_layout', 'left-main'); if (isset($blog_single_layout)) { switch ($blog_single_layout) { case 'left-main': $configs['sidebar'] = array( 'id' => $sidebar, 'class' => 'col-12 col-xl-3' ); $configs['main'] = array( 'class' => 'col-xl-9' ); break; case 'main-right': $configs['sidebar'] = array( 'id' => $sidebar, 'class' => 'col-12 col-xl-3' ); $configs['main'] = array( 'class' => 'col-xl-9' ); break; case 'main': $configs['main'] = array( 'class' => 'single-full' ); break; default: $configs['main'] = array( 'class' => 'single-full' ); break; } if (($blog_single_layout === 'left-main' || $blog_single_layout === 'main-right') && (empty($configs['sidebar']['id']) || !is_active_sidebar($configs['sidebar']['id']))) { $configs['main'] = array( 'class' => '' ); } } } return $configs; } } if (! function_exists('maia_tbay_add_bg_close_canvas_menu')) { function maia_tbay_add_bg_close_canvas_menu() { $sidebar_id = 'canvas-menu'; if (!is_active_sidebar($sidebar_id)) { return; } ?>
    theme_location && $item->description) { $item_output = str_replace($args->link_after . '', '' . $args->link_after . '', $item_output); } return $item_output; } add_filter('walker_nav_menu_start_el', 'maia_tbay_nav_description', 10, 4); } if (! function_exists('maia_add_class_wrapper_container')) { function maia_add_class_wrapper_container($class_ar) { $class_ar = explode(', ', $class_ar); $class = join(' ', $class_ar); return $class; } add_filter('maia_class_wrapper_container', 'maia_add_class_wrapper_container', 10, 1); } if (! function_exists('maia_tbay_woocs_redraw_cart')) { function maia_tbay_woocs_redraw_cart() { return 0; } add_filter('woocs_redraw_cart', 'maia_tbay_woocs_redraw_cart', 10, 1); } if( ! function_exists('maia_load_html_dropdowns_action') ) { function maia_load_html_dropdowns_action() { check_ajax_referer( 'maia-megamenu-nonce', 'security' ); $response = array( 'status' => 'error', 'message' => 'Can\'t load HTML blocks with AJAX', 'data' => array(), ); if( isset( $_POST['ids'] ) && is_array( $_POST['ids'] ) ) { $ids = maia_clean( $_POST['ids'] ); foreach ($ids as $id) { $id = (int) $id; $content = maia_get_html_custom_post($id); if( ! $content ) continue; $response['status'] = 'success'; $response['message'] = esc_html__( 'At least one HTML block loaded', 'maia' ); $response['data'][$id] = $content; } } echo json_encode($response); die(); } add_action( 'wp_ajax_maia_load_html_dropdowns', 'maia_load_html_dropdowns_action' ); add_action( 'wp_ajax_nopriv_maia_load_html_dropdowns', 'maia_load_html_dropdowns_action' ); } if( ! function_exists('maia_load_html_click_action') ) { function maia_load_html_click_action() { check_ajax_referer( 'maia-menuclick-nonce', 'security' ); $response = array( 'status' => 'error', 'message' => 'Can\'t load HTML blocks with AJAX', 'data' => array(), ); if( ! empty( $_POST['slug'] ) ) { $slug = maia_clean( $_POST['slug'] ); $layout = maia_clean( $_POST['layout'] ); $args = [ 'echo' => false, 'menu' => $slug, 'container_class' => 'collapse navbar-collapse', 'menu_id' => 'menu-' . $slug, 'walker' => new Maia_Megamenu_Walker(), 'fallback_cb' => '__return_empty_string', 'container' => '', ]; $args['menu_class'] = maia_nav_menu_get_menu_class($layout); $content = wp_nav_menu($args); $response['status'] = 'success'; $response['message'] = esc_html__('At least one HTML Menu Canvas loaded', 'maia'); $response['data'] = $content; } echo json_encode($response); die(); } add_action( 'wp_ajax_maia_load_html_click', 'maia_load_html_click_action' ); add_action( 'wp_ajax_nopriv_maia_load_html_click', 'maia_load_html_click_action' ); } if( ! function_exists('maia_load_html_canvas_template') ) { function maia_load_html_canvas_template() { check_ajax_referer( 'maia-menuclick-nonce', 'security' ); $response = array( 'status' => 'error', 'message' => 'Can\'t load HTML blocks with AJAX', 'data' => array(), ); if( !empty( $_POST['id'] ) ) { $template_id = (int) maia_clean( $_POST['id'] ); $content = maia_get_html_custom_post($template_id); $response['status'] = 'success'; $response['message'] = esc_html__('At least one HTML Template Canvas loaded', 'maia'); $response['data'] = $content; } echo json_encode($response); die(); } add_action( 'wp_ajax_maia_load_html_canvas_template_click', 'maia_load_html_canvas_template' ); add_action( 'wp_ajax_nopriv_maia_load_html_canvas_template_click', 'maia_load_html_canvas_template' ); } if ( ! function_exists( 'maia_get_social_html' ) ) { function maia_get_social_html($key, $value, $title, $link, $media) { if( !$value ) return; switch ($key) { case 'facebook': $output = sprintf( '', esc_attr( $title ), urlencode( $link ), urlencode( $title ) ); break; case 'twitter': $output = sprintf( '', esc_attr( $title ), urlencode( $link ), urlencode( $title ) ); break; case 'linkedin': $output = sprintf( '', urlencode( $link ), esc_attr( $title ), urlencode( $title ) ); break; case 'pinterest': $output = sprintf( '', urlencode( $media ), urlencode( $link ), esc_attr( $title ), urlencode( $title ) ); break; case 'whatsapp': $output = sprintf( '', urlencode( $link ), esc_attr( $title ) ); break; case 'email': $output = sprintf( '', esc_html( $title ), urlencode( $link ), esc_attr( $title ) ); break; default: # code... break; } return $output; } } if ( ! function_exists( 'maia_custom_share_code' ) ) { function maia_custom_share_code( $title, $link, $media ) { if( !maia_tbay_get_config('enable_code_share', true) ) return; $socials = maia_tbay_get_config('sortable_sharing'); $socials_html = ''; foreach ($socials as $key => $value) { $socials_html .= maia_get_social_html($key, $value, $title, $link, $media); } if ( $socials_html ) { $socials_html = apply_filters('maia_addons_share_link_socials', $socials_html); printf( '', $socials_html ); } } } if ( ! function_exists( 'maia_get_elementor_post_scripts' ) ) { function maia_get_elementor_post_scripts() { if( !maia_elementor_activated() ) return; if ( class_exists( '\Elementor\Plugin' ) ) { $elementor = \Elementor\Plugin::instance(); $elementor->frontend->enqueue_styles(); } if ( class_exists( '\Elementor\Core\Files\CSS\Post' ) ) { $css_file = new \Elementor\Core\Files\CSS\Post( maia_get_header_id() ); } elseif ( class_exists( '\Elementor\Post_CSS_File' ) ) { $css_file = new \Elementor\Post_CSS_File( maia_get_header_id() ); } $css_file->enqueue(); if ( class_exists( '\Elementor\Core\Files\CSS\Post' ) ) { $css_file = new \Elementor\Core\Files\CSS\Post( maia_get_footer_id() ); } elseif ( class_exists( '\Elementor\Post_CSS_File' ) ) { $css_file = new \Elementor\Post_CSS_File( maia_get_footer_id() ); } $css_file->enqueue(); } } if (!function_exists('maia_logout_without_confirm')) { add_action('check_admin_referer', 'maia_logout_without_confirm', 10, 2); function maia_logout_without_confirm($action, $result) { /** * Allow logout without confirmation */ if ($action == "log-out" && !isset($_GET['_wpnonce'])) { $redirect_to = isset($_REQUEST['redirect_to']) ? $_REQUEST['redirect_to'] : home_url(); $location = str_replace('&', '&', wp_logout_url($redirect_to)); header("Location: $location"); die; } } }