58 lines
1.2 KiB
PHP
58 lines
1.2 KiB
PHP
<?php
|
|
|
|
|
|
if ( ! function_exists( 'skatepark_support' ) ) :
|
|
function skatepark_support() {
|
|
// Enqueue editor styles.
|
|
add_editor_style(
|
|
array(
|
|
'/assets/theme.css',
|
|
)
|
|
);
|
|
|
|
// Add support for core custom logo.
|
|
add_theme_support(
|
|
'custom-logo',
|
|
array(
|
|
'height' => 35,
|
|
'width' => 150,
|
|
'flex-width' => true,
|
|
'flex-height' => true,
|
|
)
|
|
);
|
|
|
|
//Primary navigation is used on the header and the footer pattern
|
|
register_nav_menus(
|
|
array(
|
|
'primary' => __( 'Primary Navigation', 'skatepark' )
|
|
)
|
|
);
|
|
|
|
remove_theme_support( 'block-templates' );
|
|
}
|
|
add_action( 'after_setup_theme', 'skatepark_support' );
|
|
endif;
|
|
|
|
/**
|
|
* Enqueue scripts and styles.
|
|
*/
|
|
function skatepark_scripts() {
|
|
// Enqueue front-end styles.
|
|
wp_enqueue_style( 'skatepark-styles', get_stylesheet_directory_uri() . '/assets/theme.css', array( 'blockbase-ponyfill' ), wp_get_theme()->get( 'Version' ) );
|
|
}
|
|
add_action( 'wp_enqueue_scripts', 'skatepark_scripts' );
|
|
|
|
/**
|
|
* Block Styles.
|
|
*/
|
|
require get_stylesheet_directory() . '/inc/block-styles.php';
|
|
|
|
/**
|
|
* Block Patterns.
|
|
*/
|
|
require get_stylesheet_directory() . '/inc/block-patterns.php';
|
|
|
|
/**
|
|
* Block Styles.
|
|
*/
|
|
require get_stylesheet_directory() . '/inc/block-styles.php';
|