tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Enable support for Post Thumbnails on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary', 'elegant-pink' ), ) ); /* * 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', ) ); /* * Enable support for Post Formats. * See https://developer.wordpress.org/themes/functionality/post-formats/ */ add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'elegant_pink_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); //Custom Image Sizes add_image_size( 'elegant-pink-post-thumb', 80, 66, true); add_image_size( 'elegant-pink-slider', 1800, 696, true); add_image_size( 'elegant-pink-image', 835, 500, true); } endif; add_action( 'after_setup_theme', 'elegant_pink_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function elegant_pink_content_width() { $GLOBALS['content_width'] = apply_filters( 'elegant_pink_content_width', 640 ); } add_action( 'after_setup_theme', 'elegant_pink_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function elegant_pink_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Right Sidebar', 'elegant-pink' ), 'id' => 'right-sidebar', 'description' => '', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer One', 'elegant-pink' ), 'id' => 'footer-one', 'description' => '', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Two', 'elegant-pink' ), 'id' => 'footer-two', 'description' => '', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Three', 'elegant-pink' ), 'id' => 'footer-three', 'description' => '', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'elegant_pink_widgets_init' ); /** * Enqueue scripts and styles. */ function elegant_pink_scripts() { $elegant_pink_query_args = array( 'family' => 'Merriweather:400,400italic,700,700italic|Roboto:400,700,900,500', ); wp_enqueue_style( 'elegant-pink-font-awesome', get_template_directory_uri(). '/css/font-awesome.css' ); wp_enqueue_style( 'elegant-pink-lightslider-style', get_template_directory_uri(). '/css/lightslider.css' ); wp_enqueue_style( 'elegant-pink-meanmenu-style', get_template_directory_uri(). '/css/meanmenu.css' ); wp_enqueue_style( 'elegant-pink-google-fonts', add_query_arg( $elegant_pink_query_args, "//fonts.googleapis.com/css" ) ); wp_enqueue_style( 'elegant-pink-style', get_stylesheet_uri(), '', '1.1' ); wp_enqueue_script( 'elegant-pink-meanmenu', get_template_directory_uri() . '/js/jquery.meanmenu.js', array('jquery'), '2.0.8', true ); wp_enqueue_script( 'elegant-pink-lightslider', get_template_directory_uri() . '/js/lightslider.js', array('jquery'), '1.1.5', true ); wp_enqueue_script( 'elegant-pink-masonary', get_template_directory_uri() . '/js/masonary.js', array('jquery'), '20151221', true ); wp_register_script( 'elegant-pink-custom-js', get_template_directory_uri() . '/js/custom.js', array('jquery'), '20151222', true ); $elegant_pink_slider_auto = get_theme_mod( 'elegant_pink_slider_auto', '1' ); $elegant_pink_slider_loop = get_theme_mod( 'elegant_pink_slider_loop', '1' ); $elegant_pink_slider_control = get_theme_mod( 'elegant_pink_slider_control', '1' ); $elegant_pink_slider_transition = get_theme_mod( 'elegant_pink_slider_transition', 'fade' ); $elegant_pink_slider_speed = get_theme_mod( 'elegant_pink_slider_speed', '400' ); $elegant_pink_slider_pause = get_theme_mod( 'elegant_pink_slider_pause', '6000' ); $elegant_pink_translation_array = array( 'auto' => esc_attr($elegant_pink_slider_auto), 'loop' => esc_attr($elegant_pink_slider_loop), 'option' => esc_attr($elegant_pink_slider_control), 'mode' => esc_attr($elegant_pink_slider_transition), 'speed' => absint($elegant_pink_slider_speed), 'pause' => absint($elegant_pink_slider_pause), 'ajax_url' => admin_url( 'admin-ajax.php' ), 'elegant_pink_nonce' => wp_create_nonce( 'elegant_pink_nonce' ) ); wp_localize_script( 'elegant-pink-custom-js', 'elegant_pink_data', $elegant_pink_translation_array ); wp_enqueue_script( 'elegant-pink-custom-js' ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'elegant_pink_scripts' ); /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/extras.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/elegant-pink-custom-functions.php'; /** * Load Featured Post Widget */ require get_template_directory() . '/inc/widget-featured-post.php'; /** * Load Featured Post Widget */ require get_template_directory() . '/inc/widget-recent-post.php'; /** * Add Custom Meta Box */ require get_template_directory() . '/inc/elegant-pink-metabox.php';