c44ebf2bc4
* Blockbase: Load Block Patterns for children automatically * Regenerate variations
16 lines
414 B
PHP
16 lines
414 B
PHP
<?php
|
|
|
|
/**
|
|
* Add Editor Styles
|
|
*/
|
|
function videomaker_editor_styles() {
|
|
// Primary navigation is used on the header and the footer pattern
|
|
register_nav_menus(
|
|
array(
|
|
'primary' => __( 'Primary Navigation', 'videomaker' ),
|
|
'social' => __( 'Social Navigation', 'videomaker' ),
|
|
'footer' => __( 'Footer Navigation', 'videomaker' )
|
|
)
|
|
);
|
|
}
|
|
add_action( 'after_setup_theme', 'videomaker_editor_styles' );
|