Advertisement
finySTAR

Untitled

Jan 13th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <?php
  2.  
  3. function learningWorldPress_resources()
  4. {
  5.     wp_enqueue_style('style', get_stylesheet_uri());
  6. }
  7.  
  8. add_action('wp_enqueue_scripts', 'learningWorldPress_resources');
  9.  
  10. //navigation menus
  11. register_nav_menus(array(
  12.     'primary' =>__('Primary Menu'),
  13.     'footer'=>__('Footer Menu')
  14.  
  15. ));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement