slowtwitch-store/functions.php
2024-07-31 11:47:35 -06:00

15 lines
406 B
PHP

<?php
add_action( 'wp_enqueue_scripts', 'twitchfront_enqueue_styles' );
function twitchfront_enqueue_styles() {
wp_enqueue_style(
'grand-sunrise-style',
get_stylesheet_uri()
);
}
function storefront_site_branding() {
echo '<a href="' . get_site_url( ) . '"><img class="st-masthead-logo" src="/wp-content/themes/twitchfront/assets/images/logotype-dark-blue.png" alt="Slowtwitch Logo" /></a>';
}