2024-07-12 00:51:16 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
add_action( 'wp_enqueue_scripts', 'twitchfront_enqueue_styles' );
|
|
|
|
|
|
|
|
function twitchfront_enqueue_styles() {
|
|
|
|
wp_enqueue_style(
|
|
|
|
'grand-sunrise-style',
|
|
|
|
get_stylesheet_uri()
|
|
|
|
);
|
|
|
|
}
|
2024-07-31 17:47:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
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>';
|
|
|
|
}
|