tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support('title-tag'); add_theme_support('align-wide'); add_theme_support('post-thumbnails'); add_image_size('author-portfolio-recent-post', 120, 132, true); add_image_size('author-portfolio-thumbnail-mobile', 350, 350, true); add_image_size('author-portfolio-list-thumbnail', 380, 360, true); add_image_size('author-portfolio-grid-thumbnail', 380, 320, true); add_image_size('author-portfolio-thumbnail-medium', 770, 433.13, true); add_image_size('author-portfolio-thumbnail-large', 1200, 675, true); add_image_size('author-portfolio-thumbnail-featured', 930, 650, true); add_image_size('author-portfolio-header-single-product', 1080, 1080, true); add_image_size('author-portfolio-header-full', 1920, 1080, true); add_image_size('author-portfolio-latest-post-widget-thumb', 120, 120, true); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'main-menu' => esc_html__('Primary', 'author-portfolio'), 'footer-menu' => esc_html__('Footer Menu', 'author-portfolio'), ) ); add_theme_support('woocommerce'); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ $html5_support_args = array( 'comment-form', 'comment-list', 'gallery', 'caption', ); add_theme_support('html5', $html5_support_args); // Set up the WordPress core custom background feature. $custom_bg_args = apply_filters( 'author_portfolio_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ); add_theme_support('custom-background', $custom_bg_args); // Add theme support for selective refresh for widgets. add_theme_support('customize-selective-refresh-widgets'); // Add theme support for selective refresh for widgets. add_theme_support('editor-styles'); add_theme_support('wp-block-styles'); add_theme_support('responsive-embeds'); /** * Remove Theme Support */ remove_theme_support('widgets-block-editor'); /** * Add support for core custom logo. * * @link https://codex.wordpress.org/Theme_Logo */ $custom_logo_args = array( 'height' => 100, 'width' => 300, 'flex-width' => true, 'flex-height' => true, ); add_theme_support('custom-logo', $custom_logo_args); // 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('author_portfolio_content_width', 640); } endif; add_action('after_setup_theme', 'author_portfolio_setup'); /** * Register widgets */ require get_template_directory() . '/inc/register-widgets.php'; /** * Register Block Style */ require get_template_directory() . '/inc/reg-block-style.php'; /** * Enqueue scripts */ require get_template_directory() . '/inc/enqueue-scripts.php'; /** * 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'; /** * Functions which enhance the theme by hooking into WordPress. */ require get_template_directory() . '/inc/template-functions.php'; /** * RS Personal Blog Comment Template. */ require get_template_directory() . '/inc/comment-functions.php'; /** * RS Personal Blog sanitize functions. */ require get_template_directory() . '/inc/sanitize-functions.php'; /** * Checkout Fields */ require get_template_directory() . '/inc/checkout-fields.php'; /** * Kirki Plugin Activation */ require get_template_directory() . '/inc/plugins/kirki/kirki.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer/customizer.php'; /** * Related Posts. */ require get_template_directory() . '/inc/recomended-posts.php'; /** * Widgets */ require get_template_directory() . '/inc/widgets.php'; /** * Meta Fields */ require get_template_directory() . '/inc/meta-fields.php'; /** * Sidebar Control */ require get_template_directory() . '/inc/sidebar-control.php'; /** * Welcome Notice */ require get_template_directory() . '/inc/welcome/welcome-notice.php'; /** * Author Portfolio Plugin Installer */ require get_template_directory() . '/inc/welcome/plugins-installer.php'; /** * Getting Started Page */ require get_template_directory() . '/inc/getting-started/getting-started.php'; /** * Go Pro */ require get_template_directory() . '/inc/customizer/go-pro/class-customize.php'; /** * WooCommerce Medifications */ if (class_exists('woocommerce')) { require get_template_directory() . '/inc/woocommerce-modification.php'; } // Set a custom option when switching themes. add_action('switch_theme', 'author_portfolio_set_previous_theme_flag'); function author_portfolio_set_previous_theme_flag() { update_option('rswp_previous_theme', 'author-portfolio'); // Replace with your theme name. } /** * Disable Elementor Redirect Page */ add_action('admin_init', function () { if (did_action('elementor/loaded')) { remove_action('admin_init', [\Elementor\Plugin::$instance->admin, 'maybe_redirect_to_getting_started']); } }, 1);