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('allure-news-carousel-img', 783, 450, true);
add_image_size('allure-news-carousel-img-landscape', 783, 225, true);
add_image_size('allure-news-carousel-large-img', 1000, 574, true);
add_image_size('allure-news-carousel-large-img-landscape', 1000, 287, true);
add_image_size('allure-news-large-thumb', 1170, 9999);
add_image_size('allure-news-small-thumb', 350, 220, true);
// This theme uses wp_nav_menu() in one location.
register_nav_menus(array(
'menu-1' => esc_html__('Primary', 'allure-news'),
'top-menu' => esc_html__('Top Menu', 'allure-news'),
'social-menu' => esc_html__('Social Menu', 'allure-news'),
));
/*
* 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('allure_news_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');
$allure_news_theme_options = allure_news_get_options_value();
$GLOBALS['allure_news_theme_options'] = $allure_news_theme_options;
}
endif;
add_action('after_setup_theme', 'allure_news_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 allure_news_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('allure_news_content_width', 640);
}
add_action('after_setup_theme', 'allure_news_content_width', 0);
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function allure_news_widgets_init()
{
register_sidebar(array(
'name' => esc_html__('Sidebar', 'allure-news'),
'id' => 'sidebar-1',
'description' => esc_html__('Add widgets here.', 'allure-news'),
'before_widget' => '
',
'before_title' => '',
));
register_sidebar(array(
'name' => esc_html__('Home Page Widget Area', 'allure-news'),
'id' => 'allure-news-home-widget-area',
'description' => esc_html__('Add widgets here for home page.', 'allure-news'),
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => esc_html__('Home Page Full Width Area', 'allure-news'),
'id' => 'allure-news-home-full-width-area',
'description' => esc_html__('This area is just below the featured section and with full width.', 'allure-news'),
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => esc_html__('Footer Widget 1', 'allure-news'),
'id' => 'footer-1',
'description' => esc_html__('Add widgets here.', 'allure-news'),
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => esc_html__('Footer Widget 2', 'allure-news'),
'id' => 'footer-2',
'description' => esc_html__('Add widgets here.', 'allure-news'),
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => esc_html__('Footer Widget 3', 'allure-news'),
'id' => 'footer-3',
'description' => esc_html__('Add widgets here.', 'allure-news'),
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => esc_html__('Above Footer(Full Width)', 'allure-news'),
'id' => 'above-footer',
'description' => esc_html__('Add widgets here.', 'allure-news'),
'before_widget' => '',
'before_title' => '',
));
}
add_action('widgets_init', 'allure_news_widgets_init');
/**
* Enqueue scripts and styles.
*/
function allure_news_scripts()
{
/*google font */
global $allure_news_theme_options;
$allure_news_theme_options = allure_news_get_options_value();
$allure_news_google_fonts_name = allure_news_google_fonts();
$allure_news_body_fonts = '';
$allure_news_heading_fonts = '';
if (!empty($allure_news_theme_options['allure-news-font-family-url'])) {
$allure_news_body_fonts = esc_attr($allure_news_theme_options['allure-news-font-family-url']);
}
if (!empty($allure_news_theme_options['allure-news-font-heading-family-url'])) {
$allure_news_heading_fonts = esc_attr($allure_news_theme_options['allure-news-font-heading-family-url']);
}
$allure_news_google_fonts_enqueue = array(
$allure_news_body_fonts,
$allure_news_heading_fonts,
);
$allure_news_google_fonts_enqueue_uniques = array_unique($allure_news_google_fonts_enqueue);
foreach ($allure_news_google_fonts_enqueue_uniques as $allure_news_google_fonts_enqueue_unique) {
wp_enqueue_style(
$allure_news_google_fonts_enqueue_unique,
'//fonts.googleapis.com/css?family=' . $allure_news_google_fonts_enqueue_unique . '',
array(),
''
);
}
/*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);
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'), _S_VERSION, true);
wp_enqueue_style('allure-news-style', get_stylesheet_uri());
wp_style_add_data('allure-news-style', 'rtl', 'replace');
wp_enqueue_script('jquery-ui-tabs');
wp_enqueue_script('allure-news-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('allure-news-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20151215', true);
/*Sticky Sidebar*/
if (!empty($allure_news_theme_options['allure-news-enable-sticky-sidebar']) && absint($allure_news_theme_options['allure-news-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('allure-news-custom', get_template_directory_uri() . '/candidthemes/assets/js/custom.js', array('jquery'), '20151215', true);
}
add_action('wp_enqueue_scripts', 'allure_news_scripts');
/**
* Enqueue fonts for the backend editor
*/
function allure_news_block_styles()
{
wp_enqueue_style('google-fonts', '//fonts.googleapis.com/css?family=Muli|Slabo+27px&display=swap');
$allure_news_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('allure-news-editor-styles', $allure_news_custom_css);
}
add_action('enqueue_block_editor_assets', 'allure_news_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';
}