//Class Theme Helper require_once ( get_template_directory() . '/core/class/theme-helper.php' ); //Class Theme Cache require_once ( get_template_directory() . '/core/class/theme-cache.php' ); //Class Walker comments require_once ( get_template_directory() . '/core/class/walker-comment.php' ); //Class Walker Mega Menu require_once ( get_template_directory() . '/core/class/walker-mega-menu.php' ); //Class Theme Likes require_once ( get_template_directory() . '/core/class/theme-likes.php' ); //Class Theme Cats Meta require_once ( get_template_directory() . '/core/class/theme-cat-meta.php' ); //Class Single Post require_once ( get_template_directory() . '/core/class/single-post.php' ); //Class Theme Autoload require_once ( get_template_directory() . '/core/class/theme-autoload.php' ); //Class Theme Dashboard require_once ( get_template_directory() . '/core/class/theme-panel.php' ); //Class Theme Verify require_once ( get_template_directory() . '/core/class/theme-verify.php' ); //Class Tinymce require_once(get_template_directory() . "/core/class/tinymce-icon.php"); function seofy_editor() { /* This theme styles the visual editor with editor-style.css to match the theme style. */ add_editor_style( 'css/editor-styles.css' ); add_editor_style('fonts/flaticon/flaticon.css'); add_theme_support( 'editor-styles' ); } add_action( 'after_setup_theme', 'seofy_editor' ); function seofy_content_width() { if ( ! isset( $content_width ) ) { $content_width = 940; } } add_action( 'after_setup_theme', 'seofy_content_width', 0 ); function seofy_theme_slug_setup() { add_theme_support('title-tag'); } add_action('after_setup_theme', 'seofy_theme_slug_setup'); require_once(get_template_directory() . '/wpb/wpb-init.php'); add_action('init', 'seofy_page_init'); if (!function_exists('seofy_page_init')) { function seofy_page_init() { add_post_type_support('page', 'excerpt'); } } if (!function_exists('seofy_main_menu')) { function seofy_main_menu ($location = ''){ wp_nav_menu( array( 'theme_location' => 'main_menu', 'menu' => $location, 'container' => '', 'container_class' => '', 'after' => '', 'link_before' => '', 'link_after' => '', 'walker' => new Seofy_Mega_Menu_Waker() ) ); } } // return all sidebars if (!function_exists('seofy_get_all_sidebar')) { function seofy_get_all_sidebar() { global $wp_registered_sidebars; $out = array(); if ( empty( $wp_registered_sidebars ) ) return; foreach ( $wp_registered_sidebars as $sidebar_id => $sidebar) : $out[$sidebar_id] = $sidebar['name']; endforeach; return $out; } } if (!function_exists('seofy_get_custom_preset')) { function seofy_get_custom_preset() { $custom_preset = get_option('seofy_preset'); $presets = seofy_default_preset(); $out = array(); $out['default'] = esc_html__( 'Default', 'seofy' ); $i = 1; if(is_array($presets)){ foreach ($presets as $key => $value) { $out[$key] = $key; $i++; } } if(is_array($custom_preset)){ foreach ( $custom_preset as $preset_id => $preset) : $out[$preset_id] = $preset_id; endforeach; } return $out; } } if (!function_exists('seofy_get_custom_menu')) { function seofy_get_custom_menu() { $taxonomies = array(); $menus = get_terms('nav_menu'); foreach ($menus as $key => $value) { $taxonomies[$value->name] = $value->name; } return $taxonomies; } } function seofy_get_attachment( $attachment_id ) { $attachment = get_post( $attachment_id ); return array( 'alt' => get_post_meta( $attachment->ID, '_wp_attachment_image_alt', true ), 'caption' => $attachment->post_excerpt, 'description' => $attachment->post_content, 'href' => get_permalink( $attachment->ID ), 'src' => $attachment->guid, 'title' => $attachment->post_title ); } if (!function_exists('seofy_reorder_comment_fields')) { function seofy_reorder_comment_fields($fields ) { $new_fields = array(); $myorder = array('author', 'email', 'url', 'comment'); foreach( $myorder as $key ){ $new_fields[ $key ] = isset($fields[ $key ]) ? $fields[ $key ] : ''; unset( $fields[ $key ] ); } if( $fields ) { foreach( $fields as $key => $val ) { $new_fields[ $key ] = $val; } } return $new_fields; } } add_filter('comment_form_fields', 'seofy_reorder_comment_fields'); function seofy_mce_buttons_2( $buttons ) { array_unshift( $buttons, 'styleselect' ); return $buttons; } add_filter( 'mce_buttons_2', 'seofy_mce_buttons_2' ); function seofy_tiny_mce_before_init( $settings ) { $settings['theme_advanced_blockformats'] = 'p,h1,h2,h3,h4'; $style_formats = array( array( 'title' => esc_html__( 'Dropcap', 'seofy' ), 'items' => array( array( 'title' => esc_html__( 'Theme Color', 'seofy' ), 'inline' => 'span', 'classes' => 'dropcap theme_style', 'styles' => array( 'color' => '#ffffff', 'background-color' => Seofy_Theme_Helper::get_option('theme-custom-color'))), array( 'title' => esc_html__( 'Theme Secondary Color', 'seofy' ), 'inline' => 'span', 'classes' => 'dropcap secondary_style', 'styles' => array( 'color' => Seofy_Theme_Helper::get_option('second-custom-color'), 'background-color' => '#ffffff')), )), array( 'title' => esc_html__( 'Highlighter', 'seofy' ), 'items' => array( array( 'title' => esc_html__( 'Theme Color', 'seofy' ), 'inline' => 'span', 'classes' => 'highlighter', 'styles' => array( 'color' => '#ffffff', 'background-color' => Seofy_Theme_Helper::get_option('theme-custom-color'))), array( 'title' => esc_html__( 'Theme Secondary Color', 'seofy' ), 'inline' => 'span', 'classes' => 'highlighter_second', 'styles' => array( 'color' => '#ffffff', 'background-color' => Seofy_Theme_Helper::get_option('second-custom-color'))), )), array( 'title' => esc_html__( 'Font Weight', 'seofy' ), 'items' => array( array( 'title' => esc_html__( 'Default', 'seofy' ), 'inline' => 'span', 'classes' => 'custom-weight', 'styles' => array( 'font-weight' => 'inherit' ) ), array( 'title' => esc_html__( 'Lightest (100)', 'seofy' ), 'inline' => 'span', 'classes' => 'custom-weight', 'styles' => array( 'font-weight' => '100' ) ), array( 'title' => esc_html__( 'Lighter (200)', 'seofy' ), 'inline' => 'span', 'classes' => 'custom-weight', 'styles' => array( 'font-weight' => '200' ) ), array( 'title' => esc_html__( 'Light (300)', 'seofy' ), 'inline' => 'span', 'classes' => 'custom-weight', 'styles' => array( 'font-weight' => '300' ) ), array( 'title' => esc_html__( 'Normal (400)', 'seofy' ), 'inline' => 'span', 'classes' => 'custom-weight', 'styles' => array( 'font-weight' => '400' ) ), array( 'title' => esc_html__( 'Medium (500)', 'seofy' ), 'inline' => 'span', 'classes' => 'custom-weight', 'styles' => array( 'font-weight' => '500' ) ), array( 'title' => esc_html__( 'Semi-Bold (600)', 'seofy' ), 'inline' => 'span', 'classes' => 'custom-weight', 'styles' => array( 'font-weight' => '600' ) ), array( 'title' => esc_html__( 'Bold (700)', 'seofy' ), 'inline' => 'span', 'classes' => 'custom-weight', 'styles' => array( 'font-weight' => '700' ) ), array( 'title' => esc_html__( 'Extra Bold (800)', 'seofy' ), 'inline' => 'span', 'classes' => 'custom-weight', 'styles' => array( 'font-weight' => '800' ) ), array( 'title' => esc_html__( 'Black (900)', 'seofy' ), 'inline' => 'span', 'classes' => 'custom-weight', 'styles' => array( 'font-weight' => '900' ) ), ) ), array( 'title' => esc_html__( 'List Style', 'seofy' ), 'items' => array( array( 'title' => esc_html__( 'Dash', 'seofy' ), 'selector' => 'ul', 'classes' => 'seofy_dash'), array( 'title' => esc_html__( 'Check', 'seofy' ), 'selector' => 'ul', 'classes' => 'seofy_check'), array( 'title' => esc_html__( 'Check With Gradient', 'seofy' ), 'selector' => 'ul', 'classes' => 'seofy_check_gradient'), array( 'title' => esc_html__( 'Plus', 'seofy' ), 'selector' => 'ul', 'classes' => 'seofy_plus'), array( 'title' => esc_html__( 'No List Style', 'seofy' ), 'selector' => 'ul', 'classes' => 'no-list-style'), ) ), ); $settings['style_formats'] = str_replace( '"', "'", json_encode( $style_formats ) ); $settings['extended_valid_elements'] = 'span[*],a[*],i[*]'; return $settings; } add_filter( 'tiny_mce_before_init', 'seofy_tiny_mce_before_init' ); function seofy_theme_add_editor_styles() { add_editor_style( 'css/libs/v4-shims.min.css' ); add_editor_style( 'css/libs/all.min.css' ); } add_action( 'current_screen', 'seofy_theme_add_editor_styles' ); function seofy_categories_postcount_filter ($variable) { if(strpos($variable,' (')){ $variable = str_replace(' (', ' ', $variable); $variable = str_replace(' (', ' ', $variable); $variable = str_replace(')', '', $variable); } else{ $variable = str_replace(' (', '', $variable); $variable = str_replace(')', '', $variable); } $pattern1 = '/cat-item-\d+/'; preg_match_all( $pattern1, $variable,$matches ); if(isset($matches[0])){ foreach ($matches[0] as $key => $value) { $int = (int) str_replace('cat-item-','', $value); $icon_image_id = get_term_meta ( $int, 'category-icon-image-id', true ); if(!empty($icon_image_id)){ $icon_image = wp_get_attachment_image_src ( $icon_image_id, 'full' ); $icon_image_alt = get_post_meta($icon_image_id, '_wp_attachment_image_alt', true); $replacement = '$1'.(!empty($icon_image_alt) ? esc_attr($icon_image_alt) : '').''; $pattern = '/(cat-item-'.$int.'+.*?>)/'; $variable = preg_replace( $pattern, $replacement, $variable ); } } } return $variable; } add_filter('wp_list_categories', 'seofy_categories_postcount_filter'); add_filter( 'get_archives_link', 'seofy_render_archive_widgets', 10, 6 ); function seofy_render_archive_widgets ( $link_html, $url, $text, $format, $before, $after ) { $text = wptexturize( $text ); $url = esc_url( $url ); if ( 'link' == $format ) { $link_html = "\t\n"; } elseif ( 'option' == $format ) { $link_html = "\t\n"; } elseif ( 'html' == $format ) { $after = str_replace('(', '', $after); $after = str_replace(' ', '', $after); $after = str_replace(' ', '', $after); $after = str_replace(')', '', $after); $after = !empty($after) ? " ".esc_html($after)." " : ""; $link_html = "
  • ".esc_html($before)."".esc_html($text)."".$after."
  • "; } else { // custom $link_html = "\t$before$text$after\n"; } return $link_html; } // Add image size if ( function_exists( 'add_image_size' ) ) { add_image_size( 'wgl-740-520', 740, 520, true ); add_image_size( 'wgl-440-440', 440, 440, true ); add_image_size( 'wgl-220-180', 220, 180, true ); add_image_size( 'wgl-120-120', 120, 120, true ); } // Include Woocommerce init if plugin is active if ( class_exists( 'WooCommerce' ) ) { require_once( get_template_directory() . '/woocommerce/woocommerce-init.php' ); }