12345678910111213141516171819202122232425262728293031 |
- <?php
- if ( ! function_exists( 'mayland_blocks_support' ) ) :
- function mayland_blocks_support() {
- // Enqueue editor styles.
- add_editor_style(
- array(
- 'theme.css',
- )
- );
- // This theme has one menu location.
- register_nav_menus(
- array(
- 'primary' => __( 'Primary Navigation', 'mayland-blocks' ),
- )
- );
- }
- add_action( 'after_setup_theme', 'mayland_blocks_support' );
- endif;
- /**
- * Enqueue scripts and styles.
- */
- function mayland_blocks_scripts() {
- // Enqueue front-end styles.
- wp_enqueue_style( 'mayland-blocks-styles', get_stylesheet_directory_uri() . '/assets/theme.css', array( 'blockbase-ponyfill' ), wp_get_theme()->get( 'Version' ) );
- }
- add_action( 'wp_enqueue_scripts', 'mayland_blocks_scripts' );
|