__('Primary Menu', 'themeStarter'), 'secondary' => __('Secondary Menu', 'themeStarter'), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', 'style', 'script' ) ); /* * Enable support for Post Formats. */ add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link', 'gallery', 'status', 'audio', 'chat' ) ); } function themeStarter_init() { // Use categories and tags with attachments register_taxonomy_for_object_type('category', 'attachment'); register_taxonomy_for_object_type('post_tag', 'attachment'); }