1234567891011121314151617181920212223 |
- <?php
- if ( ! function_exists( 'mayland_blocks_support' ) ) :
- function mayland_blocks_support() {
- // Enqueue editor styles.
- add_editor_style(
- array(
- 'theme.css',
- )
- );
- }
- 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' );
|