// =============================== // UNI-ENROL STYLE THEME SETUP // =============================== function ue_theme_setup() { // Enable features add_theme_support('title-tag'); add_theme_support('post-thumbnails'); add_theme_support('custom-logo'); add_theme_support('html5', array('search-form', 'comment-form', 'gallery')); // Register menu (top navigation like UniEnrol) register_nav_menus(array( 'primary-menu' => __('Primary Menu', 'ue-theme'), 'footer-menu' => __('Footer Menu', 'ue-theme') )); } add_action('after_setup_theme', 'ue_theme_setup'); // =============================== // LOAD CSS (YOUR DESIGN SYSTEM) // =============================== function ue_enqueue_assets() { // Main style (IMPORTANT) wp_enqueue_style( 'ue-style', get_stylesheet_uri(), array(), '1.0' ); // Google Font (modern UniEnrol style) wp_enqueue_style( 'ue-fonts', 'https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap', array(), null ); } add_action('wp_enqueue_scripts', 'ue_enqueue_assets'); // =============================== // ADD MENU CLASS SUPPORT (for hover dropdown) // =============================== function ue_menu_classes($classes, $item, $args) { if ($args->theme_location === 'primary-menu') { $classes[] = 'ue-menu-item'; } return $classes; } add_filter('nav_menu_css_class', 'ue_menu_classes', 10, 3); // =============================== // ENABLE GUTENBERG FULL WIDTH // =============================== function ue_gutenberg_setup() { add_theme_support('align-wide'); } add_action('after_setup_theme', 'ue_gutenberg_setup'); Services - Study SupportX
A smartphone displays an application or webpage labeled 'Student OS', showing various menu options such as 'Classes', 'Assignments', and 'Notes'. It is placed in front of a blurred computer monitor on a desk, with a keyboard visible in the background. The lighting suggests a warm and cozy indoor setting.
A laptop displaying a website with a search bar at the top and several categorized icons for different services. The laptop is positioned on a light-colored desk in an indoor setting, with the focus on the screen contents and some blurred background elements.
A laptop displaying a webpage with the text 'I design and develop experiences that make people's lives simple.' is placed on a wooden table. It is set in an outdoor seating area with white furniture and greenery in the background. The setting appears to be calm and conducive to work or relaxation.