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'); remove_theme_support( 'widgets-block-editor' ); add_image_size('awe-blog-thumbnail-img', 600, 400, true); add_image_size('awe-blog-custom-size', 350, 550, true); // This theme uses wp_nav_menu() in one location. register_nav_menus([ 'primary' => esc_html__('Primary Menu', 'awe-blog'), ]); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support('html5', [ 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', 'style', 'script', ]); add_theme_support('custom-header'); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters('awe_blog_custom_background_args', [ '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', [ 'height' => 250, 'width' => 250, 'flex-width' => true, 'flex-height' => true, ]); } endif; add_action('after_setup_theme', 'awe_blog_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 awe_blog_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('awe_blog_content_width', 640); } add_action('after_setup_theme', 'awe_blog_content_width', 0); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function awe_blog_widgets_init() { register_sidebar([ 'name' => esc_html__('Sidebar', 'awe-blog'), 'id' => 'sidebar-1', 'description' => esc_html__('Add widgets here.', 'awe-blog'), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ]); for ($i = 1; $i <= 3; $i++) { register_sidebar([ 'name' => esc_html__('Awe Blog Footer Widget', 'awe-blog') . $i, 'id' => 'awe_blog_footer_' . $i, 'description' => esc_html__('Shows Widgets in Footer', 'awe-blog') . $i, 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ]); } register_sidebar([ 'name' => esc_html__('HomePage Section Sidebar', 'awe-blog'), 'id' => 'home-sidebar', 'description' => esc_html__('Add widgets here.', 'awe-blog'), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ]); } add_action('widgets_init', 'awe_blog_widgets_init'); /** * Enqueue scripts and styles. */ function awe_blog_scripts_enqueue() { wp_enqueue_style('awe-blog-style', get_stylesheet_uri()); wp_enqueue_style('awe-blog-font', awe_blog_font_url(), [], null); wp_enqueue_style( 'bootstrap-css', get_template_directory_uri() . '/assets/css/bootstrap.min.css', [], '1.0' ); wp_enqueue_script('custom_script_js', get_template_directory_uri() . '/js/custom-script.js', array('jquery'), '', true); wp_enqueue_style( 'fontawesome-css', get_template_directory_uri() . '/assets/css/font-awesome.css', [], '1.0' ); wp_enqueue_style( 'slick-css', get_template_directory_uri() . '/assets/css/slick.css', [], '1.0' ); wp_enqueue_style( 'ionicons-css', get_template_directory_uri() . '/assets/css/ionicons.css', [], '1.0' ); wp_enqueue_style( 'youtube-popup-css', get_template_directory_uri() . '/assets/css/youtube-popup.css', [], '1.0' ); wp_enqueue_style( 'awe-blog-css', get_template_directory_uri() . '/assets/css/awe-blog.css', [], '1.0' ); wp_enqueue_style( 'awe-blog-media-css', get_template_directory_uri() . '/assets/css/media-queries.css', [], '1.0' ); wp_enqueue_script( 'awe-blog-navigation', get_template_directory_uri() . '/js/navigation.js', ['jquery'], '1.0', true ); wp_enqueue_script( 'bootstrap-js', get_template_directory_uri() . '/assets/js/bootstrap.min.js', ['jquery'], '1.0', true ); wp_enqueue_script( 'slick-js', get_template_directory_uri() . '/assets/js/slick.min.js', ['jquery'], '1.0', true ); wp_enqueue_script( 'youtube-popup-js', get_template_directory_uri() . '/assets/js/youtubepopup.js', ['jquery'], '1.0', true ); wp_enqueue_script( 'awe-blog-app', get_template_directory_uri() . '/assets/js/app.js', ['jquery'], '1.0', true ); wp_enqueue_script( 'awe-blog-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', ['jquery'], '', true ); if (is_singular() && comments_open() && get_option('thread_comments')) { wp_enqueue_script('comment-reply'); } } add_action('wp_enqueue_scripts', 'awe_blog_scripts_enqueue'); function awe_blog_custom_customize_enqueue() { wp_enqueue_style( 'awe-blog-customizer-style', trailingslashit(get_template_directory_uri()) . 'inc/customizer/css/customizer-control.css' ); } add_action( 'customize_controls_enqueue_scripts', 'awe_blog_custom_customize_enqueue' ); if (!function_exists('awe_blog_font_url')): function awe_blog_font_url() { $fonts_url = ''; $fonts = []; if ('off' !== _x('on', 'Cinzel font: on or off', 'awe-blog')) { $fonts[] = 'Cinzel:400'; } if ('off' !== _x('on', 'Open Sans font: on or off', 'awe-blog')) { $fonts[] = 'Open Sans:400'; } if ($fonts) { $fonts_url = add_query_arg( [ 'family' => urlencode(implode('|', $fonts)), ], '//fonts.googleapis.com/css' ); } return $fonts_url; } endif; /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; require get_template_directory() . '/inc/awe-blog-menu.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-control.php'; require get_template_directory() . '/inc/customizer.php'; require get_template_directory() . '/inc/awe-blog-customizer-default.php'; require get_template_directory() . '/plugin-activation.php'; require get_template_directory() . '/lib/awe-blog-tgmp.php'; require_once( trailingslashit( get_template_directory() ) . 'trt-customize-pro/awe-blog-upgrade/class-customize.php' ); /** * Load Jetpack compatibility file. */ if (defined('JETPACK__VERSION')) { require get_template_directory() . '/inc/jetpack.php'; } if (!function_exists('awe_blog_get_excerpt')): function awe_blog_get_excerpt($post_id, $count) { $content_post = get_post($post_id); $excerpt = $content_post->post_content; $excerpt = strip_shortcodes($excerpt); $excerpt = strip_tags($excerpt); $excerpt = preg_replace('/\s\s+/', ' ', $excerpt); $excerpt = preg_replace('#\[[^\]]+\]#', ' ', $excerpt); $strip = explode(' ', $excerpt); foreach ($strip as $key => $single) { if (!filter_var($single, FILTER_VALIDATE_URL) === false) { unset($strip[$key]); } } $excerpt = implode(' ', $strip); $excerpt = substr($excerpt, 0, $count); if (strlen($excerpt) >= $count) { $excerpt = substr($excerpt, 0, strripos($excerpt, ' ')); $excerpt = $excerpt . '...'; } return $excerpt; } endif; if (!function_exists('wp_body_open')) { function wp_body_open() { do_action('wp_body_open'); } } function awe_blog_header_customize_register($wp_customize) { $wp_customize->remove_section('header_image'); } add_action('customize_register', 'awe_blog_header_customize_register', 50); if (!function_exists('awe_blog_blank_widget')) { function awe_blog_blank_widget() { echo '
'; if (is_user_logged_in() && current_user_can('edit_theme_options')) { echo ' ' . esc_html__('Add Footer Widget', 'awe-blog') . ''; } echo '
'; } } if (!function_exists('awe_blog_archive_link')) { function awe_blog_archive_link($post) { $year = date('Y', strtotime($post->post_date)); $month = date('m', strtotime($post->post_date)); $day = date('d', strtotime($post->post_date)); $link = site_url('') . '/' . $year . '/' . $month . '?day=' . $day; return $link; } } add_action('admin_enqueue_scripts', 'load_admin_style'); function load_admin_style() { wp_enqueue_script('jquery'); wp_enqueue_style('theme_settings_css', get_template_directory_uri() . '/assets/css/theme-settings.css', false, '1.0.0'); wp_enqueue_style('bootstrap_min_css', get_template_directory_uri() . '/assets/css/latest.bootstrap.css', false, '1.0.0'); wp_enqueue_script('bootstrap_bundle_min_js', get_template_directory_uri() . '/assets/js/bootstrap.bundle.min.js', array('jquery'), '', true); } function custom_admin_page() { add_menu_page( 'Awe Blog Free', // Page title 'Awe Blog Free', // Menu title 'manage_options', // Capability required to access the menu page 'awe_blog_free', // Menu slug (unique identifier) 'custom_page_callback', // Function to display the page content 'dashicons-admin-generic', // Icon URL or a dashicon class 99 // Position in the menu ); } add_action('admin_menu', 'custom_admin_page'); // Function to display the content of the custom page function custom_page_callback() { ?>

>
    true, 'show_in_menu' => true, // Set to true if you also want to include built-in post types like 'post' and 'page'. ); $post_types = get_post_types($args, 'names'); asort($post_types); foreach ($post_types as $key => $item) { ?>
>
Click here to access our Knowledge Base.
true, 'show_in_menu' => true, // Set to true if you also want to include built-in post types like 'post' and 'page'. ); $post_types = get_post_types($args, 'names'); foreach ($post_types as $t_key => $t_item) { update_option('awe-blog_dslc_' . $t_key, 0); } update_option('awe-blog_dslc_bread_all', 0); foreach ($post_types as $t_key => $t_item) { if (isset($_POST['awe-blog_dslc_' . $t_key])) { update_option('awe-blog_dslc_' . $t_key, 1); } } if (isset($_POST['awe-blog_dslc_bread_all'])) { update_option('awe-blog_dslc_bread_all', 1); } if (isset($_POST['awe-blog_dslc_breadcrumb_show'])) { update_option('awe-blog_dslc_breadcrumb_show', 'on'); } else { update_option('awe-blog_dslc_breadcrumb_show', 'off'); } } catch (\Throwable $th) { } } } add_action('admin_init', 'handle_post__request'); // Hook to add the custom menu page add_action('admin_menu', 'custom_admin_page'); // Breadcrumb function function custom_breadcrumbs() { // Home page link echo '' . __('Home', 'awe-blog') . ' / '; // Check if on a singular post or page if (is_singular()) { global $post; // Get the category for the post $categories = get_the_category($post->ID); if ($categories) { $category = $categories[0]; // Use the first category echo '' . esc_html($category->name) . ' / '; } // Display the post title echo '' . get_the_title() . ''; } elseif (is_category()) { // Display the current category echo '' . single_cat_title('', false) . ''; } elseif (is_tag()) { // Display the current tag echo '' . single_tag_title('', false) . ''; } elseif (is_archive()) { // Display the current archive echo '' . get_the_archive_title() . ''; } elseif (is_search()) { // Display the search term echo '' . __('Search results for: ', 'awe-blog') . get_search_query() . ''; } elseif (is_404()) { // Display 404 message echo '' . __('404 Not Found', 'awe-blog') . ''; } echo " "; } function check_breadcrumb() { if (get_option('awe-blog_dslc_breadcrumb_show') == 'on') { if (is_single()) { $post_type = get_post_type(); if (get_option('awe-blog_dslc_' . $post_type) == 1) { $already_set = 1; if (function_exists('custom_breadcrumbs')) custom_breadcrumbs(); } } elseif (is_page()) { if (get_option('awe-blog_dslc_page') == 1) { $already_set = 1; if (function_exists('custom_breadcrumbs')) custom_breadcrumbs(); } } if (get_option('awe-blog_dslc_bread_all') == 1 && !isset($already_set)) { if (function_exists('custom_breadcrumbs')) custom_breadcrumbs(); } } } ?>