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' => __( 'Primary menu', 'bizwhoop' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'comment-list', 'gallery', 'caption', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'bizwhoop_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); // Set up the woocommerce feature. add_theme_support( 'woocommerce'); } add_action( 'after_setup_theme', 'bizwhoop_setup' ); function bizwhoop_the_custom_logo() { if ( function_exists( 'the_custom_logo' ) ) { the_custom_logo(); } } add_filter('get_custom_logo','bizwhoop_logo_class'); function bizwhoop_logo_class($html){ $html = str_replace('custom-logo-link', 'navbar-brand', $html); return $html; } /** * 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 bizwhoop_content_width() { $GLOBALS['content_width'] = apply_filters( 'bizwhoop_content_width', 640 ); } add_action( 'after_setup_theme', 'bizwhoop_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function bizwhoop_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'bizwhoop' ), 'id' => 'sidebar-1', 'description' => '', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '
', 'after_title' => '
', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Widget Area', 'bizwhoop' ), 'id' => 'footer_widget_area', 'description' => '', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '
', 'after_title' => '
', ) ); } add_action( 'widgets_init', 'bizwhoop_widgets_init' ); /*-----------------------------------------------------------------------------------*/ /* Media Upload /*-----------------------------------------------------------------------------------*/ //Get slider excerpt function get_slider_excerpt() { global $post; $excerpt = get_the_content(); $excerpt = strip_tags(preg_replace(" (\[.*?\])",'',$excerpt)); $excerpt = strip_shortcodes($excerpt); $original_len = strlen($excerpt); $excerpt = substr($excerpt, 0, 100); $len=strlen($excerpt); if($original_len>200) { $excerpt = $excerpt; return $excerpt . '
'.__("Read More","bizwhoop").'
'; } else { return $excerpt; } } //Get service excerpt function get_service_excerpt() { global $post; $excerpt = get_the_content(); $excerpt = strip_tags(preg_replace(" (\[.*?\])",'',$excerpt)); $excerpt = strip_shortcodes($excerpt); $original_len = strlen($excerpt); $excerpt = substr($excerpt, 0, 60); $len=strlen($excerpt); if($original_len>100) { $excerpt = $excerpt; return $excerpt . '
'.__("Read More","bizwhoop").'
'; } else { return $excerpt; } } the_tags();