get('Version'));
}
// Inc folder directory
define('BLOGHUB_INC_DIR', get_template_directory() . '/inc/');
if ( function_exists('bloghub_fs')) {
$relative_path = str_replace(get_template_directory(), '', BLOGHUB_INC_DIR);
$relative_file_path = $relative_path . basename(__FILE__);
bloghub_fs()->set_basename(false, $relative_file_path);
} else {
// DO NOT REMOVE THIS IF, IT IS ESSENTIAL FOR THE `function_exists` CALL ABOVE TO PROPERLY WORK.
if ( ! function_exists( 'bloghub_fs' ) ) {
// Create a helper function for easy SDK access.
function bloghub_fs() {
global $bloghub_fs;
if ( ! isset( $bloghub_fs ) ) {
// Include Freemius SDK.
require_once dirname(__FILE__) . '/fs/start.php';
$bloghub_fs = fs_dynamic_init( array(
'id' => '12367',
'slug' => 'bloghub',
'premium_slug' => 'bloghub-pro',
'type' => 'theme',
'public_key' => 'pk_0c97c7f337b74074ab7a2553ff1e2',
'is_premium' => false,
'is_premium_only' => false,
'has_addons' => false,
'has_paid_plans' => true,
'menu' => array(
'slug' => 'bloghub',
'contact' => true,
'support' => false,
),
) );
}
return $bloghub_fs;
}
// Init Freemius.
bloghub_fs();
// Signal that SDK was initiated.
do_action( 'bloghub_fs_loaded' );
}
}
/**
* Sets up theme defaults and registers support for various WordPress features.
*
* Note that this function is hooked into the after_setup_theme hook, which
* runs before the init hook. The init hook is too late for some features, such
* as indicating support for post thumbnails.
*/
function bloghub_setup() {
/*
* Make theme available for translation.
* Translations can be filed in the /languages/ directory.
* If you're building a theme based on BlogHub, use a find and replace
* to change 'bloghub' to the name of your theme in all the template files.
*/
load_theme_textdomain( 'bloghub', get_template_directory() . '/languages' );
// Add default posts and comments RSS feed links to head.
add_theme_support( 'automatic-feed-links' );
/*
* Let WordPress manage the document title.
* By adding theme support, we declare that this theme does not use a
* hard-coded
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 Menu', 'bloghub' ),
'footer' => esc_html__( 'Footer Menu', 'bloghub' ),
)
);
/*
* 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',
)
);
// Post formats
add_theme_support( 'post-formats', array(
'aside',
'gallery',
'link',
'image',
'quote',
'status',
'video',
'audio',
'chat'
) );
// Set up the WordPress core custom background feature.
add_theme_support(
'custom-background',
apply_filters(
'bloghub_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_theme_support( "responsive-embeds" );
// Gutenberg
add_theme_support(
'gutenberg',
array( 'wide-images' => true )
);
// Align wide
add_theme_support( 'align-wide' );
// Block style
add_theme_support( 'wp-block-styles' );
// Editor style
add_theme_support( 'editor-styles' );
// Editor style css
add_editor_style( 'assets/css/theme-editor-style.css' );
}
add_action( 'after_setup_theme', 'bloghub_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 bloghub_content_width() {
$GLOBALS['content_width'] = apply_filters( 'bloghub_content_width', 1170 );
}
add_action( 'after_setup_theme', 'bloghub_content_width', 0 );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function bloghub_widgets_init() {
register_sidebar(
array(
'name' => esc_html__( 'Sidebar', 'bloghub' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here.', 'bloghub' ),
'before_widget' => '',
'before_title' => '',
)
);
register_sidebar(
array(
'name' => esc_html__( 'Page Sidebar', 'bloghub' ),
'id' => 'sidebar-page',
'description' => esc_html__( 'Add widgets here.', 'bloghub' ),
'before_widget' => '',
'before_title' => '',
)
);
register_sidebar(
array(
'name' => esc_html__( 'Footer One', 'bloghub' ),
'id' => 'footer-1',
'description' => esc_html__( 'Add widgets here.', 'bloghub' ),
'before_widget' => '',
'before_title' => '',
)
);
register_sidebar(
array(
'name' => esc_html__( 'Footer Two', 'bloghub' ),
'id' => 'footer-2',
'description' => esc_html__( 'Add widgets here.', 'bloghub' ),
'before_widget' => '',
'before_title' => '',
)
);
register_sidebar(
array(
'name' => esc_html__( 'Footer Three', 'bloghub' ),
'id' => 'footer-3',
'description' => esc_html__( 'Add widgets here.', 'bloghub' ),
'before_widget' => '',
'before_title' => '',
)
);
register_sidebar(
array(
'name' => esc_html__( 'Footer Four', 'bloghub' ),
'id' => 'footer-4',
'description' => esc_html__( 'Add widgets here.', 'bloghub' ),
'before_widget' => '',
'before_title' => '',
)
);
}
add_action( 'widgets_init', 'bloghub_widgets_init' );
/**
* Enqueue scripts and styles.
*/
function bloghub_scripts() {
//Enqueue Style.
wp_enqueue_style( 'bootstrap', get_template_directory_uri().'/assets/bootstrap/bootstrap-min.css', array(), BLOGHUB_VERSION, 'all' );
if(is_rtl()){
wp_enqueue_style( 'bootstrap-rtl', get_template_directory_uri().'/assets/bootstrap/bootstrap-rtl-min.css', array(), BLOGHUB_VERSION, 'all' );
}
wp_enqueue_style( 'fontawesomeall-min', get_template_directory_uri().'/assets/css/fontawesomeall-min.css', array(), BLOGHUB_VERSION, 'all' );
wp_enqueue_style( 'slicknav-min', get_template_directory_uri().'/assets/css/slicknav-min.css', array(), BLOGHUB_VERSION, 'all' );
wp_enqueue_style( 'superfish', get_template_directory_uri().'/assets/css/superfish.css', array(), BLOGHUB_VERSION, 'all' );
wp_enqueue_style( 'animate-min', get_template_directory_uri().'/assets/css/animate-min.css', array(), BLOGHUB_VERSION, 'all' );
wp_enqueue_style( 'slick', get_template_directory_uri().'/assets/slick/slick.css', array(), BLOGHUB_VERSION, 'all' );
wp_enqueue_style( 'magnific-popup', get_template_directory_uri().'/assets/css/magnific-popup.css', array(), BLOGHUB_VERSION, 'all' );
wp_enqueue_style( 'bloghub-typography', get_template_directory_uri().'/assets/css/typography.css', array(), BLOGHUB_VERSION, 'all' );
wp_enqueue_style( 'bloghub-theme', get_template_directory_uri().'/assets/scss/theme.css', array(), BLOGHUB_VERSION, 'all' );
wp_enqueue_style( 'bloghub-style', get_stylesheet_uri(), array(), BLOGHUB_VERSION );
wp_style_add_data( 'bloghub-style', 'rtl', 'replace' );
//Enqueue scripts.
wp_enqueue_script( 'bootstrap-bundle-js', get_template_directory_uri() . '/assets/bootstrap/bootstrap-bundle-min.js', array('jquery'), BLOGHUB_VERSION, true );
wp_enqueue_script( 'slicknav-min-js', get_template_directory_uri() . '/assets/js/jquery-slicknav-min.js', array(), BLOGHUB_VERSION, true );
wp_enqueue_script( 'superfish-min', get_template_directory_uri() . '/assets/js/superfish.min.js', array(), BLOGHUB_VERSION, true );
wp_enqueue_script( 'slick-min', get_template_directory_uri() . '/assets/slick/slick-min.js', array(), BLOGHUB_VERSION, true );
wp_enqueue_script( 'magnific-popup', get_template_directory_uri() . '/assets/js/jquery.magnific-popup.min.js', array(), BLOGHUB_VERSION, true );
wp_enqueue_script( 'bloghub-navigation', get_template_directory_uri() . '/assets/js/navigation.js', array(), BLOGHUB_VERSION, true );
wp_enqueue_script( 'bloghub-main', get_template_directory_uri() . '/assets/js/main.js', array('jquery'), BLOGHUB_VERSION, true );
wp_enqueue_style( 'bloghub-fonts', bloghub_fonts_url(), array(), null );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'bloghub_scripts' );
if ( ! function_exists( 'bloghub_fonts_url' ) ) :
function bloghub_fonts_url() {
$fonts_url = '';
$fonts = array();
$subsets = 'latin,latin-ext';
if ( 'off' !== _x( 'on', 'Jost: on or off', 'bloghub' ) ) {
$fonts[] = 'Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600';
}
$query_args = array(
'family' => urlencode( implode( '|', $fonts ) ),
'subset' => urlencode( $subsets ),
);
if ( $fonts ) {
$fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' );
}
return esc_url_raw( $fonts_url );
}
endif;
/**
* Implement the Custom Header feature.
*/
require BLOGHUB_INC_DIR . 'custom-header.php';
/**
* Template Functions
*/
require BLOGHUB_INC_DIR . 'template-functions.php';
/**
* Admin Functions
*/
require BLOGHUB_INC_DIR . 'admin/admin.php';
/**
* Customizer additions.
*/
require BLOGHUB_INC_DIR . 'customizer.php';
/**
* Kirki Customizer additions.
*/
require BLOGHUB_INC_DIR . 'kirki/kirki.php';
require BLOGHUB_INC_DIR . 'kirki-customize/kirki-customizer.php';
require BLOGHUB_INC_DIR . 'kirki-customize/kirki-custom-functions.php';
require BLOGHUB_INC_DIR . 'kirki-customize/theme-color.php';
/*
* Customizer Pro
*/
require_once get_template_directory() . '/customize-pro/class-customize.php';
/**
* Load hooks ini.
*/
require BLOGHUB_INC_DIR . 'hook/hook-ini.php';
/*
* Comment Template
*/
require BLOGHUB_INC_DIR . 'comment-template.php';
/*
* Custom Metabox Options
*/
require BLOGHUB_INC_DIR . 'custom-metabox.php';
/*
* Widget Options
*/
require BLOGHUB_INC_DIR . 'widgets/widgets.php';
/*
* TGMPA Plugin
*/
require BLOGHUB_INC_DIR . 'tgmpa/recommended-plugins.php';
/**
* Load Jetpack compatibility file.
*/
if ( defined( 'JETPACK__VERSION' ) ) {
require BLOGHUB_INC_DIR . 'jetpack.php';
}