functions.php 414 B

12345678910111213141516
  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' );