/**
* Refined Magazine functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package Refined Magazine
*/
if (!defined('_S_VERSION')) {
// Replace the version number of the theme on each release.
define('_S_VERSION', '1.2.4');
}
if (!function_exists('refined_magazine_setup')) :
/**
* 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 refined_magazine_setup()
{
/*
* Make theme available for translation.
* Translations can be filed in the /languages/ directory.
* If you're building a theme based on Refined Magazine, use a find and replace
* to change 'refined-magazine' to the name of your theme in all the template files.
*/
load_theme_textdomain('refined-magazine');
// 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');
add_image_size('refined-magazine-carousel-img', 783, 450, true);
add_image_size('refined-magazine-carousel-img-landscape', 783, 225, true);
add_image_size('refined-magazine-carousel-large-img', 1000, 574, true);
add_image_size('refined-magazine-carousel-large-img-landscape', 1000, 287, true);
add_image_size('refined-magazine-large-thumb', 1170, 9999);
add_image_size('refined-magazine-small-thumb', 350, 220, true);
// This theme uses wp_nav_menu() in one location.
register_nav_menus(array(
'menu-1' => esc_html__('Primary', 'refined-magazine'),
'top-menu' => esc_html__('Top Menu', 'refined-magazine'),
'social-menu' => esc_html__('Social Menu', 'refined-magazine'),
));
/*
* 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',
));
// Set up the WordPress core custom background feature.
add_theme_support('custom-background', apply_filters('refined_magazine_custom_background_args', array(
'default-color' => 'fafafa ',
'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' => 400,
'width' => 250,
'flex-width' => true,
'flex-height' => true,
));
/*
* Enable support for Post Formats.
*
* See: https://codex.wordpress.org/Post_Formats
*/
add_theme_support('post-formats', array(
'image',
'video',
'gallery',
'audio',
));
/*
* Add theme support for gutenberg block
*/
add_theme_support('align-wide');
// Add theme support for selective refresh for widgets.
add_theme_support('customize-selective-refresh-widgets');
// Add support for responsive embedded content.
add_theme_support('responsive-embeds');
// Add support for default block styles.
add_theme_support('wp-block-styles');
// Add support for Yoast SEO Breadcrumbs.
add_theme_support('yoast-seo-breadcrumbs');
$refined_magazine_theme_options = refined_magazine_get_options_value();
$GLOBALS['refined_magazine_theme_options'] = $refined_magazine_theme_options;
}
endif;
add_action('after_setup_theme', 'refined_magazine_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 refined_magazine_content_width()
{
// This variable is intended to be overruled from themes.
// Open WPCS issue: {@link https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/issues/1043}.
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound
$GLOBALS['content_width'] = apply_filters('refined_magazine_content_width', 640);
}
add_action('after_setup_theme', 'refined_magazine_content_width', 0);
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function refined_magazine_widgets_init()
{
register_sidebar(array(
'name' => esc_html__('Sidebar', 'refined-magazine'),
'id' => 'sidebar-1',
'description' => esc_html__('Add widgets here.', 'refined-magazine'),
'before_widget' => ' ',
'before_title' => '',
));
register_sidebar(array(
'name' => esc_html__('Home Page Widget Area', 'refined-magazine'),
'id' => 'refined-magazine-home-widget-area',
'description' => esc_html__('Add widgets here for home page.', 'refined-magazine'),
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => esc_html__('Home Page Full Width Area', 'refined-magazine'),
'id' => 'refined-magazine-home-full-width-area',
'description' => esc_html__('This area is just below the featured section and with full width.', 'refined-magazine'),
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => esc_html__('Footer Widget 1', 'refined-magazine'),
'id' => 'footer-1',
'description' => esc_html__('Add widgets here.', 'refined-magazine'),
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => esc_html__('Footer Widget 2', 'refined-magazine'),
'id' => 'footer-2',
'description' => esc_html__('Add widgets here.', 'refined-magazine'),
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => esc_html__('Footer Widget 3', 'refined-magazine'),
'id' => 'footer-3',
'description' => esc_html__('Add widgets here.', 'refined-magazine'),
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => esc_html__('Above Footer(Full Width)', 'refined-magazine'),
'id' => 'above-footer',
'description' => esc_html__('Add widgets here.', 'refined-magazine'),
'before_widget' => '',
'before_title' => '',
));
}
add_action('widgets_init', 'refined_magazine_widgets_init');
/**
* Enqueue scripts and styles.
*/
function refined_magazine_scripts()
{
/*google font */
global $refined_magazine_theme_options;
wp_enqueue_style('google-fonts', '//fonts.googleapis.com/css?family=Slabo+27px|Muli&display=swap');
/*Font-Awesome-master-refined-magazine*/
$refined_magazine_fontawesome = !empty($refined_magazine_theme_options['refined-magazine-font-awesome-version-loading']) ? esc_attr($refined_magazine_theme_options['refined-magazine-font-awesome-version-loading']) : 'version-4';
if ($refined_magazine_fontawesome == 'version-5') {
/*Font-Awesome-master*/
wp_enqueue_style('font-awesome-5', get_template_directory_uri() . '/candidthemes/assets/framework/font-awesome-5/css/all.min.css', array(), _S_VERSION);
} elseif ($refined_magazine_fontawesome == 'version-6') {
/*Font-Awesome-master*/
wp_enqueue_style('font-awesome-6', get_template_directory_uri() . '/candidthemes/assets/framework/font-awesome-6/css/all.min.css', array(), _S_VERSION);
} else {
/*Font-Awesome-master*/
wp_enqueue_style('font-awesome-4', get_template_directory_uri() . '/candidthemes/assets/framework/Font-Awesome/css/font-awesome.min.css', array(), _S_VERSION);
}
wp_enqueue_style('slick-css', get_template_directory_uri() . '/candidthemes/assets/framework/slick/slick.css');
wp_enqueue_style('slick-theme-css', get_template_directory_uri() . '/candidthemes/assets/framework/slick/slick-theme.css');
wp_enqueue_script('slick', get_template_directory_uri() . '/candidthemes/assets/framework/slick/slick.min.js', array('jquery'), '20151217', true);
wp_enqueue_style('refined-magazine-style', get_stylesheet_uri());
wp_style_add_data('refined-magazine-style', 'rtl', 'replace');
wp_enqueue_script('jquery-ui-tabs');
wp_enqueue_script('refined-magazine-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20151215', true);
wp_enqueue_script('marquee', get_template_directory_uri() . '/candidthemes/assets/framework/marquee/jquery.marquee.js', array(), '20151215', true);
wp_enqueue_script('refined-magazine-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20151215', true);
/*Sticky Sidebar*/
if (!empty($refined_magazine_theme_options['refined-magazine-enable-sticky-sidebar']) && absint($refined_magazine_theme_options['refined-magazine-enable-sticky-sidebar']) == 1) {
wp_enqueue_script('theia-sticky-sidebar', get_template_directory_uri() . '/candidthemes/assets/js/theia-sticky-sidebar.js', array(), '20151215', true);
}
if (is_singular() && comments_open() && get_option('thread_comments')) {
wp_enqueue_script('comment-reply');
}
wp_enqueue_script('refined-magazine-custom', get_template_directory_uri() . '/candidthemes/assets/js/refined-magazine-custom.js', array('jquery'), '20151215', true);
}
add_action('wp_enqueue_scripts', 'refined_magazine_scripts');
/**
* Enqueue fonts for the backend editor
*/
function refined_magazine_block_styles()
{
wp_enqueue_style('google-fonts', '//fonts.googleapis.com/css?family=Muli|Slabo+27px&display=swap');
$refined_magazine_custom_css = '
.edit-post-visual-editor.editor-styles-wrapper{ font-family: Muli;}
.editor-post-title__block .editor-post-title__input,
.editor-styles-wrapper h1,
.editor-styles-wrapper h2,
.editor-styles-wrapper h3,
.editor-styles-wrapper h4,
.editor-styles-wrapper h5,
.editor-styles-wrapper h6{font-family:Slabo+27px;}
';
wp_add_inline_style('refined-magazine-editor-styles', $refined_magazine_custom_css);
}
add_action('enqueue_block_editor_assets', 'refined_magazine_block_styles');
/**
* 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';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';
/**
* Load Jetpack compatibility file.
*/
if (defined('JETPACK__VERSION')) {
require get_template_directory() . '/inc/jetpack.php';
}
/**
* Load Core File
*/
require get_template_directory() . '/candidthemes/core.php';
/**
* For Admin Page
*/
if (is_admin()) {
require get_template_directory() . '/candidthemes/notice/admin-notice.php';
}