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( 'menu-1' => esc_html__( 'Primary', 'remax-store' ), ) ); /* * 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', ) ); /** * Add theme support for selective refresh for widgets. */ add_theme_support( 'customize-selective-refresh-widgets' ); /** * Add support for core custom logo. */ add_theme_support( 'custom-logo', array( 'height' => 250, 'width' => 250, 'flex-width' => true, 'flex-height' => true, ) ); /** * Post formats. */ add_theme_support( 'post-formats', array( 'gallery', 'image', 'link', 'quote', 'video', 'audio', 'status', 'aside', ) ); //Set a default header image 980px width and 60px height: $args = array( 'width' => 250, 'height' => 600, ); add_theme_support( 'custom-header', $args ); /** * WooCommerce */ add_theme_support( 'woocommerce' ); } /** * Limite the excerpt * * @since 1.0.4 */ function remax_store_excerpt_length( $length ) { if(is_admin()){ return $length; } return get_theme_mod('remax_store_the_excerpt_word_limit',20); } /** * Remax_Store submenu css class sub menu item add * * @param string $class file * @return void */ function remax_store_nav_menu_submenu_css_class( $classes ) { $classes[] = 'remax-store-sidenav-dropdown'; return $classes; } /** * Registers an editor stylesheet for the theme. * * @since 1.0.0 */ function remax_store_add_editor_styles() { add_editor_style( 'remax-store-custom' ); } /** * 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 remax_store_content_width() { // This variable is intended to be overruled from themes. // Open WPCS issue: {@link https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/issues/1043}. // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound $GLOBALS['content_width'] = apply_filters( 'remax_store_content_width', 640 ); } } } /** * cicking this off by calling 'get_instance()' method */ Remax_Store_After_Setup_Theme::get_instance();