123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225 |
- <?php
- if (!defined('_S_VERSION')) {
-
- define('_S_VERSION', '1.0.0');
- }
- function uiu_cse_setup()
- {
-
- load_theme_textdomain('uiu-cse', get_template_directory() . '/languages');
-
- add_theme_support('automatic-feed-links');
-
- add_theme_support('title-tag');
-
- add_theme_support('post-thumbnails');
-
- register_nav_menus(
- array(
- 'menu-1' => esc_html__('Primary', 'uiu-cse'),
- )
- );
-
- add_theme_support(
- 'html5',
- array(
- 'search-form',
- 'comment-form',
- 'comment-list',
- 'gallery',
- 'caption',
- 'style',
- 'script',
- )
- );
-
- add_theme_support(
- 'custom-background',
- apply_filters(
- 'uiu_cse_custom_background_args',
- array(
- 'default-color' => 'ffffff',
- 'default-image' => '',
- )
- )
- );
-
- add_theme_support('customize-selective-refresh-widgets');
-
- add_theme_support(
- 'custom-logo',
- array(
- 'height' => 250,
- 'width' => 250,
- 'flex-width' => true,
- 'flex-height' => true,
- )
- );
- }
- add_action('after_setup_theme', 'uiu_cse_setup');
- function uiu_cse_content_width()
- {
- $GLOBALS['content_width'] = apply_filters('uiu_cse_content_width', 640);
- }
- add_action('after_setup_theme', 'uiu_cse_content_width', 0);
- function uiu_cse_widgets_init()
- {
- register_sidebar(
- array(
- 'name' => esc_html__('Sidebar', 'uiu-cse'),
- 'id' => 'sidebar-1',
- 'description' => esc_html__('Add widgets here.', 'uiu-cse'),
- 'before_widget' => '<section id="%1$s" class="widget %2$s">',
- 'after_widget' => '</section>',
- 'before_title' => '<h2 class="widget-title">',
- 'after_title' => '</h2>',
- )
- );
- }
- add_action('widgets_init', 'uiu_cse_widgets_init');
- function uiu_cse_scripts()
- {
- wp_enqueue_style('uiu-cse-style', get_stylesheet_uri(), array(), _S_VERSION);
- wp_style_add_data('uiu-cse-style', 'rtl', 'replace');
- wp_enqueue_style('uiu-cse-pickr', 'https://cdn.jsdelivr.net/npm/@simonwep/pickr/dist/themes/nano.min.css');
- wp_enqueue_style('uiu-cse-google-fonts-material-icon', 'https://fonts.googleapis.com/icon?family=Material+Icons');
- wp_enqueue_style('uiu-cse-google-fonts-material-symbols-outlined', 'https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0');
- wp_enqueue_style('uiu-cse-google-fonts-material+symbols+sharpt', 'https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL,GRAD@48,400,0,0');
- wp_enqueue_script('uiu-cse-pickr-js', 'https://cdn.jsdelivr.net/npm/@simonwep/pickr/dist/pickr.min.js', array(), '');
- wp_enqueue_script('uiu-cse-settings-js', get_template_directory_uri() . '/js/theme-settings.js', array(), _S_VERSION, true);
- wp_enqueue_script('uiu-cse-navigation', get_template_directory_uri() . '/js/navigation.js', array(), _S_VERSION, true);
- if (is_singular() && comments_open() && get_option('thread_comments')) {
- wp_enqueue_script('comment-reply');
- }
- }
- add_action('wp_enqueue_scripts', 'uiu_cse_scripts');
- require get_template_directory() . '/inc/custom-header.php';
- require get_template_directory() . '/inc/template-tags.php';
- require get_template_directory() . '/inc/template-functions.php';
- require get_template_directory() . '/inc/customizer.php';
- if (defined('JETPACK__VERSION')) {
- require get_template_directory() . '/inc/jetpack.php';
- }
- include_once(get_stylesheet_directory() . '/inc/custom-blocks.php');
- include_once(get_template_directory() . '/inc/acf/acf.php');
- include_once(get_template_directory() . '/inc/acf-settings.php');
- include_once(get_stylesheet_directory() . '/inc/custom-post-type.php');
- include_once(get_stylesheet_directory() . '/inc/theme-settings.php');
|