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', 'aquarella-lite' ), ) ); /* * 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', 'audio', ) ); /* Image Sizes */ add_image_size( 'aquarella_imgsize_1', 1170, 800, true ); /* Native Site Logo */ add_theme_support( 'custom-logo', array( 'height' => 220, 'width' => 220, 'flex-height' => true, ) ); } endif; add_action( 'after_setup_theme', 'aquarella_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 aquarella_content_width() { $GLOBALS['content_width'] = apply_filters( 'aquarella_content_width', 750 ); } add_action( 'after_setup_theme', 'aquarella_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function aquarella_widgets_init() { //Sidebar register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'aquarella-lite' ), 'id' => 'sidebar-1', 'description' => '', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'aquarella_widgets_init' ); /** * Enqueue scripts and styles. */ function aquarella_scripts() { wp_enqueue_style( 'aquarella-style', get_stylesheet_uri() ); wp_enqueue_script( 'aquarella-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20151215', true ); wp_enqueue_script( 'aquarella-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20151215', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } //bootstrap wp_enqueue_style( 'bootstrap', get_template_directory_uri() . '/vendor/bootstrap/css/bootstrap.min.css' ); wp_enqueue_script( 'bootstrap', get_template_directory_uri() . '/vendor/bootstrap/js/bootstrap.min.js', array('jquery'), '20151215', true ); //Google Web Fonts wp_enqueue_style( 'aquarella-googlewebfonts', 'https://fonts.googleapis.com/css?family=Merriweather+Sans:400,700' ); wp_enqueue_style( 'aquarella-googlewebfonts2', 'https://fonts.googleapis.com/css?family=Roboto:400,700,300' ); //theme files wp_enqueue_style( 'aquarella-theme-style', get_template_directory_uri() . '/css/styles.css' ); } add_action( 'wp_enqueue_scripts', 'aquarella_scripts' ); /** * 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'; /** * navigation bootstrap */ require get_template_directory() . '/inc/aquarella_bootstrap_navwalker.php'; /** * Custom Widgets */ require get_template_directory() . '/inc/custom-widgets.php'; /** * TGM Plugin Activation */ require_once get_template_directory() . '/inc/tgm-plugin-activation/class-tgm-plugin-activation.php'; require get_template_directory() . '/inc/tgm-config.php'; /** * Kirki */ if ( class_exists( 'Kirki' ) ) { require_once get_template_directory() . '/inc/tmb-aquarella-kirki.php'; require get_template_directory() . '/inc/include-kirki.php'; require get_template_directory() . '/inc/kirki-config.php'; } /** * Customizer PRO Version */ require_once( trailingslashit( get_template_directory() ) . 'trt-customize-pro/aquarella/class-customize.php' ); /** * Gutenberg */ add_theme_support( 'align-wide' ); add_action( 'after_setup_theme', 'aquarella_gutenberg_css' ); function aquarella_gutenberg_css(){ add_theme_support( 'editor-styles' ); // if you don't add this line, your stylesheet won't be added add_editor_style( 'style-editor.css' ); // tries to include style-editor.css directly from your theme folder }