Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. /*-----------------------------------------------------------------------------------*/
  2. /* Action after theme setup
  3. /*-----------------------------------------------------------------------------------*/
  4.  
  5. function theme_setup () {
  6.  
  7. // load textaomain
  8. load_theme_textdomain( 'themeweave', get_template_directory() . '/languages' );
  9.  
  10. // add required support
  11. add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption' ));
  12. add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link', 'gallery', 'status', 'audio', 'chat' ));
  13. add_theme_support( 'custom-background' );
  14. add_theme_support( 'automatic-feed-links' );
  15. add_theme_support( 'post-thumbnails' );
  16. set_post_thumbnail_size( 900, 450, true );
  17.  
  18. // create nav menu
  19. register_nav_menus( array(
  20. 'primary' => __( 'Top Menu', 'themeweave' ),
  21. 'secondary' => __( 'Second Menu', 'themeweave' ),
  22. ));
  23.  
  24. // add style to editor
  25. add_editor_style( array( 'assets/css/editor-style.min.css', '//fonts.googleapis.com/css?family=Lato:400,300,700,400italic' ) );
  26. }
  27. add_action( 'after_setup_theme', 'theme_setup' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement