Skip to content

Instantly share code, notes, and snippets.

@langhenet
Created November 13, 2016 16:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save langhenet/1c8a6a0dd66705084a002ba73dfb99c7 to your computer and use it in GitHub Desktop.
Save langhenet/1c8a6a0dd66705084a002ba73dfb99c7 to your computer and use it in GitHub Desktop.
Add_action question
<?php
include(get_template_directory() . '/includes/theme-setup.php');
<?php
register_nav_menus( array(
'nav-main' => __( 'Main Navigation'),
'nav-secondary' => __('Secondary Navigation'),
) );
register_sidebar( array(
'name' => 'Home right sidebar',
'id' => 'home_right_1',
'before_widget' => '<div>',
'after_widget' => '</div>',
'before_title' => '<h2 class="rounded">',
'after_title' => '</h2>',
) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment