tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Enable support for Post Thumbnails on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary', 'bizdirectory' ), ) ); add_image_size( 'bizdirectory-blog-thumbnail-img', 650, 450, true); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', 'style', 'script', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'bizdirectory_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); /** * Add support for core custom logo. * * @link https://codex.wordpress.org/Theme_Logo */ add_theme_support( 'custom-logo', array( 'height' => 250, 'width' => 250, 'flex-width' => true, 'flex-height' => true, ) ); } add_action( 'after_setup_theme', 'bizdirectory_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function bizdirectory_content_width() { $GLOBALS['content_width'] = apply_filters( 'bizdirectory_content_width', 640 ); } add_action( 'after_setup_theme', 'bizdirectory_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function bizdirectory_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'bizdirectory' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'bizdirectory' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); for ($i = 1; $i <= 3; $i++) { register_sidebar(array( 'name' => esc_html__('bizdirectory Footer Widget', 'bizdirectory') . $i, 'id' => 'bizdirectory_footer_' . $i, 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', )); } } add_action( 'widgets_init', 'bizdirectory_widgets_init' ); /** * Enqueue scripts and styles. */ function bizdirectory_scripts() { wp_enqueue_style( 'bizdirectory-style', get_stylesheet_uri(), array(), _S_VERSION ); wp_enqueue_style( 'bizdirectory-font', bizdirectory_fonts(), array(), null); wp_enqueue_style( 'bizdirectory-bootstrapcss', get_template_directory_uri() . '/assets/css/bootstrap.css', array(), '1.0' ); wp_enqueue_style( 'bizdirectory-css', get_template_directory_uri() . '/assets/css/bizdirectory.css', array(), '1.0' ); wp_enqueue_style( 'bizdirectory-media-queries', get_template_directory_uri() . '/assets/css/media-queries.css', array(), '1.0' ); wp_enqueue_script( 'bizdirectory-navigation', get_template_directory_uri() . '/js/navigation.js', array('jquery'), '1.0', true); wp_enqueue_script( 'bizdirectory-custom-script', get_template_directory_uri() . '/assets/js/custom.js', array('jquery'), '1.0', true); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'bizdirectory_scripts',99 ); /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require get_template_directory() . '/inc/template-functions.php'; require get_template_directory() . '/plugin-activation.php'; require get_template_directory() . '/lib/bizdirectory-tgmp.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; require get_template_directory() . '/inc/bizdirectory-customizer-default.php'; require get_template_directory() . '/inc/customize-control.php'; /** * Load Jetpack compatibility file. */ if ( defined( 'JETPACK__VERSION' ) ) { require get_template_directory() . '/inc/jetpack.php'; } if (!function_exists('bizdirectory_fonts')) : function bizdirectory_fonts() { $fonts_url = ''; $fonts = array(); if ('off' !== _x('on', 'Work Sans font: on or off', 'bizdirectory')) { $fonts[] = 'Work Sans:400,600,700'; } if ('off' !== _x('on', 'Montserrat: on or off', 'bizdirectory')) { $fonts[] = 'Montserrat:400'; } if ($fonts) { $fonts_url = add_query_arg(array( 'family' => urlencode(implode('|', $fonts)), ), '//fonts.googleapis.com/css'); } return $fonts_url; } endif; if(!function_exists('bizdirectory_blog_get_category')) { function bizdirectory_blog_get_category() { $terms = get_terms('category',array( 'hide_empty' => true, )); $options = ['' => '']; foreach ($terms as $t) { $options[$t->term_id] = $t->name; } return $options; } } if (!function_exists('bizdirectory_get_excerpt')) : function bizdirectory_get_excerpt($post_id, $count) { $content_post = get_post($post_id); $excerpt = $content_post->post_content; $excerpt = strip_shortcodes($excerpt); $regex = array ( '/]*>.*?<\/h2>/i', '/]*>.*?<\/h1>/i', '/]*>.*?<\/h3>/i', '/]*>.*?<\/h4>/i', '/]*>.*?<\/h5>/i', '/]*>.*?<\/h6>/i', ); $excerpt = preg_replace($regex, '', $excerpt); $excerpt = strip_tags($excerpt); $excerpt = preg_replace('/\s\s+/', ' ', $excerpt); $excerpt = preg_replace('#\[[^\]]+\]#', ' ', $excerpt); $strip = explode(' ', $excerpt); foreach ($strip as $key => $single) { if (!filter_var($single, FILTER_VALIDATE_URL) === false) { unset($strip[$key]); } } $excerpt = implode(' ', $strip); $excerpt = substr($excerpt, 0, $count); if (strlen($excerpt) >= $count) { $excerpt = substr($excerpt, 0, strripos($excerpt, ' ')); $excerpt = $excerpt . '...'; } return $excerpt; } endif; if (!function_exists('bizdirectory_blank_widget')) { function bizdirectory_blank_widget() { echo '
'; if (is_user_logged_in() && current_user_can('edit_theme_options')) { echo '' . esc_html__('Add Footer Widget', 'bizdirectory') . ''; } echo '
'; } } function bizdirectory_add_admin_notice() { ?>