functions.php 506 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Add Editor Styles
  4. */
  5. function videomaker_editor_styles() {
  6. // Primary navigation is used on the header and the footer pattern
  7. register_nav_menus(
  8. array(
  9. 'primary' => __( 'Primary Navigation', 'videomaker' ),
  10. 'social' => __( 'Social Navigation', 'videomaker' ),
  11. 'footer' => __( 'Footer Navigation', 'videomaker' )
  12. )
  13. );
  14. }
  15. add_action( 'after_setup_theme', 'videomaker_editor_styles' );
  16. /**
  17. * Block Patterns.
  18. */
  19. require get_stylesheet_directory() . '/inc/block-patterns.php';