File: /home/mastech10/public_html/runntrail.com/wp-content/themes/royale-news/functions.php
<?php
/**
* Royale News functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package Royale_News
*/
$royale_news_current_theme = wp_get_theme( 'royale-news' );
define( 'ROYALE_NEWS_VERSION', $royale_news_current_theme->get( 'Version' ) );
if ( ! function_exists( 'royale_news_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 royale_news_setup() {
/*
* Make theme available for translation.
* Translations can be filed in the /languages/ directory.
* If you're building a theme based on Royale News, use a find and replace
* to change 'royale-news' to the name of your theme in all the template files.
*/
load_theme_textdomain( 'royale-news', 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 <title> 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' );
// Theme Thumbnail Sizes.
add_image_size( 'royale-news-thumbnail-1', 200, 150, true );
add_image_size( 'royale-news-thumbnail-2', 370, 241, true );
add_image_size( 'royale-news-thumbnail-3', 761, 492, true );
add_image_size( 'royale-news-thumbnail-4', 900, 600, true ); // used for featured section sliders.
// This theme uses wp_nav_menu() in one location.
register_nav_menus(
array(
'primary' => esc_html__( 'Primary', 'royale-news' ),
'social' => esc_html__( 'Social', 'royale-news' ),
'footer' => esc_html__( 'Footer', 'royale-news' ),
)
);
/*
* 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(
'royale_news_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' => 90,
'width' => 250,
'flex-width' => true,
'flex-height' => true,
)
);
/**
* Remove block widget support in WordPress version 5.8 & later.
*
* @link https://make.wordpress.org/core/2021/06/29/block-based-widgets-editor-in-wordpress-5-8/
*/
remove_theme_support( 'widgets-block-editor' );
}
endif;
add_action( 'after_setup_theme', 'royale_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 royale_news_content_width() {
$GLOBALS['content_width'] = apply_filters( 'royale_news_content_width', 640 );
}
add_action( 'after_setup_theme', 'royale_news_content_width', 0 );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function royale_news_widgets_init() {
register_sidebar(
array(
'name' => esc_html__( 'Sidebar', 'royale-news' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here.', 'royale-news' ),
'before_widget' => '<div id="%1$s" class="col-md-12 widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<div class="widget-info clearfix"><h3 class="widget-title">',
'after_title' => '</h3></div>',
)
);
register_sidebar(
array(
'name' => esc_html__( 'Featured Posts Widget Area', 'royale-news' ),
'id' => 'sidebar-2',
'description' => esc_html__( 'Add Main Featured Posts or Slider Featured Posts widgets here.', 'royale-news' ),
'before_widget' => '<div class="row news-section %2$s"><div class="col-md-12">',
'after_widget' => '</div></div>',
'before_title' => '<h3 class="section-title">',
'after_title' => '</h3>',
)
);
register_sidebar(
array(
'name' => esc_html__( 'FrontPage Widget Area', 'royale-news' ),
'id' => 'sidebar-3',
'description' => esc_html__( 'Add Main Highlight or Slider Highlight widgets here.', 'royale-news' ),
'before_widget' => '<div class="row news-section %2$s"><div class="col-md-12">',
'after_widget' => '</div></div>',
'before_title' => '<h3 class="section-title">',
'after_title' => '</h3>',
)
);
register_sidebar(
array(
'name' => esc_html__( 'FrontPage Bottom Widget Area', 'royale-news' ),
'id' => 'sidebar-6',
'description' => esc_html__( 'Add Widgets Here.', 'royale-news' ),
'before_widget' => '<div class="row news-section %2$s"><div class="col-md-12">',
'after_widget' => '</div></div>',
'before_title' => '<h3 class="section-title">',
'after_title' => '</h3>',
)
);
register_sidebar(
array(
'name' => esc_html__( 'Footer Widget Area', 'royale-news' ),
'id' => 'sidebar-4',
'description' => esc_html__( 'Add only four widgets here.', 'royale-news' ),
'before_widget' => '<div id="%1$s" class="col-md-3 widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<div class="widget-info"><h3 class="widget-title">',
'after_title' => '</h3></div>',
)
);
register_sidebar(
array(
'name' => esc_html__( 'Header Advertisement', 'royale-news' ),
'id' => 'sidebar-5',
'description' => esc_html__( 'Add advertisement here.', 'royale-news' ),
'before_widget' => '',
'after_widget' => '',
'before_title' => '',
'after_title' => '',
)
);
}
add_action( 'widgets_init', 'royale_news_widgets_init' );
/**
* Enqueue scripts and styles for admin.
*/
function royale_news_admin_enqueue() {
wp_enqueue_style(
'royale-news-admin',
get_template_directory_uri() . '/admin/css/admin.css',
array(),
ROYALE_NEWS_VERSION,
'all'
);
}
add_action( 'admin_enqueue_scripts', 'royale_news_admin_enqueue' );
/**
* Enqueue scripts and styles.
*/
function royale_news_scripts() {
wp_enqueue_style(
'royale-news-style',
get_stylesheet_uri(),
array(),
ROYALE_NEWS_VERSION,
'all'
);
wp_enqueue_style(
'bootstrap',
get_template_directory_uri() . '/assets/libraries/bootstrap/css/bootstrap.css',
array(),
'3.3.7',
'all'
);
wp_enqueue_style(
'font-awesome',
get_template_directory_uri() . '/assets/libraries/fontAwesome/all.min.css',
array(),
'6.7.2',
'all'
);
if ( royale_news_has_google_fonts() ) {
wp_enqueue_style( // phpcs:ignore
'royale-news-font',
royale_news_get_google_fonts_url(),
array(),
null,
'all'
);
}
wp_enqueue_style(
'royale-news-skin',
get_template_directory_uri() . '/assets/dist/css/main.css',
array(),
ROYALE_NEWS_VERSION,
'all'
);
wp_enqueue_script(
'royale-news-main',
get_template_directory_uri() . '/assets/dist/js/bundle.min.js',
array( 'jquery' ),
ROYALE_NEWS_VERSION,
true
);
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'royale_news_scripts' );
/**
* Implement the Custom Header feature.
*/
require get_template_directory() . '/inc/custom-header.php';
/**
* UDP agent to track user's non sensitive data.
*
* @since 2.2.3.
*/
require get_template_directory() . '/inc/udp/init.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';
/**
* Customizer additions.
*/
require get_template_directory() . '/themebeez/customizer/dynamic.php';
/**
* Load Breadcrumbs.
*/
require get_template_directory() . '/themebeez/third-party/breadcrumbs.php';
/**
* Load theme hooks.
*/
require get_template_directory() . '/themebeez/hooks.php';
/**
* Load Default Options.
*/
require get_template_directory() . '/themebeez/defaults.php';
/**
* Load Helper Functions.
*/
require get_template_directory() . '/themebeez/helpers.php';
/**
* Load theme filters.
*/
require get_template_directory() . '/themebeez/filters.php';
/**
* Load theme tags.
*/
require get_template_directory() . '/themebeez/theme-tags.php';
/**
* Load Widgets.
*/
require get_template_directory() . '/themebeez/widgets/widget-init.php';
/**
* Load Widgets.
*/
require get_template_directory() . '/themebeez/third-party/class-tgm-plugin-activation.php';
/**
* Adds welcome notice to admin dashboard.
*
* @since 1.1.7.
*/
require get_template_directory() . '/admin/welcome-notice/class-royale-news-theme-welcome-notice.php';
add_action(
'init',
function () {
new Royale_News_Theme_Welcome_Notice(
'Royale News',
admin_url( 'admin.php?page=royale-news' ),
array(
'themebeez-toolkit/themebeez-toolkit.php' => 'https://downloads.wordpress.org/plugin/themebeez-toolkit.zip',
)
);
}
);