__( 'Main navigation', 'bromine' ), 'social_navigation' => __( 'Footer social navigation', 'bromine' ) ) ); // Add some theme support add_theme_support( 'automatic-feed-links' ); add_theme_support( 'post-thumbnails' ); add_theme_support( 'post-formats', array( 'aside', 'audio', 'chat', 'gallery', 'image', 'link', 'quote', 'status', 'video' ) ); add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'caption') ); add_editor_style( '/css/editor-style.css' ); // Custom header arguments $args_head = array( 'width' => 1920, 'height' => 200, 'flex-height' => true, 'flex-width' => true, 'uploads' => true, 'default-text-color' => 'd35b5b', 'header-text' => true ); add_theme_support( 'custom-header', $args_head ); // Custom background arguments $args_bg = array( 'default-color' => 'f9f9f9', 'default-image' => '', 'admin-head-callback' => '', 'admin-preview-callback' => '' ); add_theme_support( 'custom-background', $args_bg ); // Add social networks fields to aithor profil and author info box add_filter( 'user_contactmethods', 'bro_profile_fields' ); function bro_profile_fields( $profile_fields ) { $profile_fields['twitter'] = __( 'Twitter URL', 'bromine' ); $profile_fields['facebook'] = __( 'Facebook URL', 'bromine' ); $profile_fields['googleplus'] = __( 'Google+ URL', 'bromine' ); $profile_fields['linkedin'] = __( 'LinkedIn URL', 'bromine' ); $profile_fields['dribbble'] = __( 'Dribbble URL', 'bromine' ); $profile_fields['pinterest'] = __( 'Pinterest URL', 'bromine' ); $profile_fields['instagram'] = __( 'Instagram URL', 'bromine' ); $profile_fields['github'] = __( 'Github URL', 'bromine' ); return $profile_fields; } }