ID ) && get_the_post_thumbnail( $post->ID ) ) {
$classes[] = 'has-featured-image';
}
return $classes;
}
add_filter( 'body_class', 'add_featured_image_class' );
if ( ! function_exists( 'skatepark_support' ) ) :
/**
* Sets up theme defaults and registers support for various WordPress features.
*
* @since Skatepark 1.0
*
* @return void
*/
function skatepark_support() {
// Add support for block styles.
add_theme_support( 'wp-block-styles' );
// Enqueue editor styles.
add_editor_style( 'style.css' );
}
endif;
add_action( 'after_setup_theme', 'skatepark_support' );
if ( ! function_exists( 'skatepark_styles' ) ) :
/**
* Enqueue styles.
*
* @since Skatepark 1.0
*
* @return void
*/
function skatepark_styles() {
// Register theme stylesheet.
wp_register_style(
'skatepark-style',
get_template_directory_uri() . '/assets/theme.css',
array(),
wp_get_theme()->get( 'Version' )
);
// Add styles inline.
wp_add_inline_style( 'skatepark-style', skatepark_get_font_face_styles() );
// Enqueue theme stylesheet.
wp_enqueue_style( 'skatepark-style' );
}
endif;
add_action( 'wp_enqueue_scripts', 'skatepark_styles' );
if ( ! function_exists( 'skatepark_editor_styles' ) ) :
/**
* Enqueue editor styles.
*
* @since Skatepark 1.0
*
* @return void
*/
function skatepark_editor_styles() {
// Add styles inline.
wp_add_inline_style( 'wp-block-library', skatepark_get_font_face_styles() );
add_editor_style(
get_template_directory_uri() . '/assets/theme.css'
);
}
endif;
add_action( 'admin_init', 'skatepark_editor_styles' );
if ( ! function_exists( 'skatepark_get_font_face_styles' ) ) :
/**
* Get font face styles.
* Called by functions skatepark_styles() and skatepark_editor_styles() above.
*
* @since Skatepark 1.0
*
* @return string
*/
function skatepark_get_font_face_styles() {
return "
@font-face{
font-family: 'Red Hat Display';
font-weight: 400;
font-style: normal;
font-stretch: normal;
font-display: swap;
src: url('" . get_theme_file_uri( 'assets/fonts/red-hat-display-regular.woff2' ) . "') format('woff2');
}
@font-face{
font-family: 'Red Hat Display';
font-weight: 500;
font-style: normal;
font-stretch: normal;
font-display: swap;
src: url('" . get_theme_file_uri( 'assets/fonts/red-hat-display-500.woff2' ) . "') format('woff2');
}
@font-face{
font-family: 'Red Hat Display';
font-weight: 700;
font-style: normal;
font-stretch: normal;
font-display: swap;
src: url('" . get_theme_file_uri( 'assets/fonts/red-hat-display-700.woff2' ) . "') format('woff2');
}
@font-face{
font-family: 'Red Hat Display';
font-weight: 900;
font-style: normal;
font-stretch: normal;
font-display: swap;
src: url('" . get_theme_file_uri( 'assets/fonts/red-hat-display-900.woff2' ) . "') format('woff2');
}
@font-face{
font-family: 'Red Hat Display';
font-weight: 400;
font-style: italic;
font-stretch: normal;
font-display: swap;
src: url('" . get_theme_file_uri( 'assets/fonts/red-hat-display-italic.woff2' ) . "') format('woff2');
}
@font-face{
font-family: 'Red Hat Display';
font-weight: 500;
font-style: italic;
font-stretch: normal;
font-display: swap;
src: url('" . get_theme_file_uri( 'assets/fonts/red-hat-display-500italic.woff2' ) . "') format('woff2');
}
@font-face{
font-family: 'Red Hat Display';
font-weight: 700;
font-style: italic;
font-stretch: normal;
font-display: swap;
src: url('" . get_theme_file_uri( 'assets/fonts/red-hat-display-700italic.woff2' ) . "') format('woff2');
}
@font-face{
font-family: 'Red Hat Display';
font-weight: 900;
font-style: italic;
font-stretch: normal;
font-display: swap;
src: url('" . get_theme_file_uri( 'assets/fonts/red-hat-display-900italic.woff2' ) . "') format('woff2');
}
";
}
endif;
if ( ! function_exists( 'skatepark_preload_webfonts' ) ) :
/**
* Preloads the main web font to improve performance.
*
* Only the main web font (font-weight: 400,700, font-style: normal) is preloaded here since that font is always relevant.
* The other fonts are only needed if the user changed style or weight of the fonts,
* and therefore preloading it would in most cases regress performance when that font would otherwise not be loaded
* at all.
*
* @since Skatepark 1.0
*
* @return void
*/
function skatepark_preload_webfonts() {
?>