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', 'uiu-cse'),
)
);
/*
* 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',
)
);
// Set up the WordPress core custom background feature.
add_theme_support(
'custom-background',
apply_filters(
'uiu_cse_custom_background_args',
array(
'default-color' => 'ffffff',
'default-image' => '',
)
)
);
// Add theme support for selective refresh for widgets.
add_theme_support('customize-selective-refresh-widgets');
/**
* Add support for core custom logo.
*
* @link https://codex.wordpress.org/Theme_Logo
*/
add_theme_support(
'custom-logo',
array(
'height' => 250,
'width' => 250,
'flex-width' => true,
'flex-height' => true,
)
);
}
add_action('after_setup_theme', 'uiu_cse_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 uiu_cse_content_width()
{
$GLOBALS['content_width'] = apply_filters('uiu_cse_content_width', 640);
}
add_action('after_setup_theme', 'uiu_cse_content_width', 0);
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
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' => '',
'before_title' => '
',
)
);
}
add_action('widgets_init', 'uiu_cse_widgets_init');
/**
* Enqueue scripts and styles.
*/
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');
function uiu_cse_header_menu()
{
register_nav_menus(
array(
'uiu-global-header-menu' => __('UIU Global Header Menu'),
'uiu-departmental-header-menu' => __('UIU Departmental Header Menu'),
'uiu-global-footer-menu' => __('UIU Global Footer Menu')
)
);
}
add_action('init', 'uiu_cse_header_menu');
/**
* 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';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';
/**
* Load Jetpack compatibility file.
*/
if (defined('JETPACK__VERSION')) {
require get_template_directory() . '/inc/jetpack.php';
}
/**
* Theme option and custom fields settings
*/
// Custom Blocks
include_once(get_stylesheet_directory() . '/inc/custom-blocks.php');
// ACF
include_once(get_template_directory() . '/inc/acf/acf.php');
// ACF Settings
include_once(get_template_directory() . '/inc/acf-settings.php');
// Custom post type
include_once(get_stylesheet_directory() . '/inc/custom-post-type.php');
// Typeahead Settings
// include_once( get_stylesheet_directory() . '/inc/wp-typeahead.php');
// Widgets
// include_once( get_stylesheet_directory() . '/inc/widgets.php' );
// Menus
// include_once( get_stylesheet_directory() . '/inc/menus.php' );
// Theme Settings
include_once(get_stylesheet_directory() . '/inc/theme-settings.php');
// Shortcodes
include_once(get_stylesheet_directory() . '/inc/shortcodes.php');
// Fetch vimeo thumbnail on save - takes video ID as input
function uiu_acf_update_user_id($value, $post_id, $field)
{
// only set a new value if the field is empty
// if ($value == '') {
// get video here
$login_id = get_field('login_id');
// fetch thumb url(s)
$user_meta = file_get_contents("https://api.github.com/users/rousnay");
$user_meta = json_decode($user_meta);
$user_id = $user_meta[0]->id;
// set value
$value = "Rousnay";
return $value;
// } else {
// return $value;
// }
}
add_filter('acf/update_value/name=employeeid', 'uiu_acf_update_user_id', 10, 3);
// function fetch_conference_data($params)
// {
// $auth_token = get_field('auth_token', 'option');
// $client_id = get_field('client_id', 'option');
// $conference_api = get_field('conference_api', 'option');
// $curl = curl_init();
// curl_setopt_array($curl, array(
// CURLOPT_URL => $conference_api,
// CURLOPT_RETURNTRANSFER => true,
// CURLOPT_ENCODING => '',
// CURLOPT_MAXREDIRS => 10,
// CURLOPT_TIMEOUT => 0,
// CURLOPT_FOLLOWLOCATION => true,
// CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
// CURLOPT_CUSTOMREQUEST => 'POST',
// CURLOPT_POSTFIELDS => '{
// "auth_token" : "' . $auth_token . '",
// "user_login_id" : "' . $client_id . '",
// "employee_id" : ' . isset($params["author"]) ? " " : " " . ',
// "fromYear" : ' . $params["fromYear"] ?? " " . ',
// "toYear" : ' . $params["toYear"] . ',
// "page" : ' . $params["page"] . ',
// "limit" : ' . $params["limit"] . '
// }',
// CURLOPT_HTTPHEADER => array(
// 'Content-Type: application/json'
// ),
// ));
// $response = curl_exec($curl);
// curl_close($curl);
// $response = json_decode($response, true);
// return $response;
// }
// function uiu_conference_route_menu_with_params(WP_REST_Request $request)
// {
// // $arg = $request->get_param('limit');
// $params = $request->get_params();
// // var_dump($params);
// return fetch_conference_data($params);
// }
// add_action("rest_api_init", function () {
// register_rest_route("uiu_api", "/conference", [
// "methods" => "GET",
// "callback" => "uiu_conference_route_menu_with_params",
// ]);
// });
/**
* Make theme option page field value available via REST API
*/
function theme_options_route_menu_global_header()
{
return get_field('global_menu_rich_contents', 'option');
}
add_action("rest_api_init", function () {
register_rest_route("options/menu", "/global-header", [
"methods" => "GET",
"callback" => "theme_options_route_menu_global_header",
]);
});
function theme_options_route_menu_departmental_header()
{
return get_field('departmental_menu_rich_contents', 'option');
}
add_action("rest_api_init", function () {
register_rest_route("options/menu", "/departmental-header", [
"methods" => "GET",
"callback" => "theme_options_route_menu_departmental_header",
]);
});
add_action('rest_api_init', function () {
header("Access-Control-Allow-Origin: *");
});
/**
* Custom Walker class to add extra element to sub-menu ul.
*/
class Custom_Walker_Nav_Menu extends Walker_Nav_Menu
{
public function start_lvl(&$output, $depth = 0, $args = array())
{
// Add your extra element here.
parent::start_lvl($output, $depth, $args);
$output .= '';
parent::end_lvl($output, $depth, $args);
}
}
function custom_menu_walker($args)
{
return array_merge($args, array(
'walker' => new Custom_Walker_Nav_Menu(),
));
}
add_filter('wp_nav_menu_args', 'custom_menu_walker');
/**
* Insert_extra_element_to_submenu
*/
// function insert_extra_element_to_submenu($matches)
// {
// $sub_menu_ul = $matches[0];
// $extra_element = '';
// $sub_menu_ul .= $extra_element;
// return $sub_menu_ul;
// }
// function custom_add_extra_element_to_submenu($nav_menu, $args)
// {
// // Find all sub-menu ul elements and add the extra element after each one.
// $nav_menu = preg_replace_callback('/()/', 'insert_extra_element_to_submenu', $nav_menu);
// return $nav_menu;
// }
// add_filter('wp_nav_menu', 'custom_add_extra_element_to_submenu', 10, 2);