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' );