HEX
Server: LiteSpeed
System: Linux server165.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
User: thetcbtv (2335)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //home/thetcbtv/www/wp-content/themes/the-true-creators/functions.php
<?php
function thetruecreators_scripts() {
    // Google Fonts
    wp_enqueue_style('google-fonts', 'https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Poppins:wght@300;400;600&display=swap', false);
    // Theme Stylesheet
    wp_enqueue_style('style', get_stylesheet_uri());
}
add_action('wp_enqueue_scripts', 'thetruecreators_scripts');

function thetruecreators_setup() {
    // Theme supports
    add_theme_support('title-tag');
    add_theme_support('custom-logo');
    add_theme_support('post-thumbnails');

    // Register navigation menu
    register_nav_menus(array(
        'primary' => __('Primary Menu', 'the-true-creators'),
    ));
}
add_filter( 'wp_sitemaps_enabled', '__return_false' );