Advertisement
Guest User

Untitled

a guest
Aug 31st, 2015
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php
  2. function theme_enqueue_styles() {
  3. wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
  4. }
  5. add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
  6.  
  7.  
  8. function register_my_menu() {
  9. register_nav_menu('footer-menu',__( 'Footer Menu' ));
  10. }
  11. add_action( 'init', 'register_my_menu' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement