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 two locations. register_nav_menus( array( 'menu-1' => __( 'Primary', 'ofisuport' ), 'menu-2' => __( 'Footer Menu', 'ofisuport' ), ) ); /* * 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', 'style', 'script', ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); // Add support for editor styles. add_theme_support( 'editor-styles' ); // Enqueue editor styles. add_editor_style( 'style-editor.css' ); // Add support for responsive embedded content. add_theme_support( 'responsive-embeds' ); // Remove support for block templates. remove_theme_support( 'block-templates' ); } endif; add_action( 'after_setup_theme', 'ofsupxxp_setup' ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function ofsupxxp_widgets_init() { register_sidebar( array( 'name' => __( 'Footer', 'ofisuport' ), 'id' => 'sidebar-1', 'description' => __( 'Add widgets here to appear in your footer.', 'ofisuport' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'ofsupxxp_widgets_init' ); /** * Enqueue scripts and styles. */ function ofsupxxp_scripts() { wp_enqueue_style( 'ofisuport-style', get_stylesheet_uri(), array(), OFSUPXXP_VERSION ); wp_enqueue_script( 'ofisuport-script', get_template_directory_uri() . '/js/script.min.js', array(), OFSUPXXP_VERSION, true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'ofsupxxp_scripts' ); /** * Add the block editor class to TinyMCE. * * This allows TinyMCE to use Tailwind Typography styles. * * @param array $settings TinyMCE settings. * @return array */ function ofsupxxp_tinymce_add_class( $settings ) { $settings['body_class'] = 'block-editor-block-list__layout'; return $settings; } add_filter( 'tiny_mce_before_init', 'ofsupxxp_tinymce_add_class' ); /** * 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';