functions.php 592 B

1234567891011121314151617181920212223
  1. <?php
  2. if ( ! function_exists( 'mayland_blocks_support' ) ) :
  3. function mayland_blocks_support() {
  4. // Enqueue editor styles.
  5. add_editor_style(
  6. array(
  7. 'theme.css',
  8. )
  9. );
  10. }
  11. add_action( 'after_setup_theme', 'mayland_blocks_support' );
  12. endif;
  13. /**
  14. * Enqueue scripts and styles.
  15. */
  16. function mayland_blocks_scripts() {
  17. // Enqueue front-end styles.
  18. wp_enqueue_style( 'mayland-blocks-styles', get_stylesheet_directory_uri() . '/assets/theme.css', array( 'blockbase-ponyfill' ), wp_get_theme()->get( 'Version' ) );
  19. }
  20. add_action( 'wp_enqueue_scripts', 'mayland_blocks_scripts' );