/** * ultrabootstrap functions and definitions * * @package ultrabootstrap */ if ( ! function_exists( 'ultrabootstrap_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. */ function ultrabootstrap_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on ultrabootstrap, use a find and replace * to change 'ultrabootstrap' to the name of your theme in all the template files */ load_theme_textdomain( 'ultrabootstrap', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded 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 http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails */ add_theme_support( 'post-thumbnails' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'ultrabootstrap' ), 'secondary' => esc_html__( 'Footer Menu', 'ultrabootstrap' ), ) ); /* * 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', ) ); /* * Enable support for Post Formats. * See http://codex.wordpress.org/Post_Formats */ add_theme_support( 'custom-logo', array( 'height' => 45, 'width' => 250, 'flex-width' => true, )); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'ultrabootstrap_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); add_theme_support( "custom-header", array( 'default-color' => 'ffffff', 'default-image' => '', ) ); /* * Enable support for Selective Refresh for Widgets. * See https://make.wordpress.org/core/2016/11/10/visible-edit-shortcuts-in-the-customizer-preview/ */ add_theme_support( 'customize-selective-refresh-widgets' ); add_editor_style() ; } endif; // ultrabootstrap_setup add_action( 'after_setup_theme', 'ultrabootstrap_setup' ); /** * Enqueue scripts and styles. */ function ultrabootstrap_scripts() { wp_enqueue_style( 'ultrabootstrap-bootstrap', get_template_directory_uri().'/css/bootstrap.css' ); wp_enqueue_style( 'ultrabootstrap-fontawesome', get_template_directory_uri().'/css/font-awesome.css' ); wp_enqueue_style( 'ultrabootstrap-googlefonts', '//fonts.googleapis.com/css?family=Roboto:400,300,700'); wp_enqueue_style( 'ultrabootstrap-style', get_stylesheet_uri() ); if(is_rtl()) { wp_enqueue_style( 'ultrabootstrap-rtl', get_template_directory_uri().'/css/rtl.css' ); wp_enqueue_style( 'ultrabootstrap-css-rtl', get_template_directory_uri().'/css/bootstrap-rtl.css' ); wp_enqueue_script( 'ultrabootstrap-js-rtl', get_template_directory_uri() . '/js/bootstrap.rtl.js', array(), '1.0.0', true ); } wp_enqueue_script('jquery'); wp_enqueue_script( 'ultrabootstrap-bootstrap', get_template_directory_uri() . '/js/bootstrap.js', array(), '1.0.0', true ); wp_enqueue_script( 'ultrabootstrap-scripts', get_template_directory_uri() . '/js/script.js', array(), '1.0.0', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'ultrabootstrap_scripts' ); /** * 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 */ if ( ! isset( $content_width ) ) $content_width = 900; function ultrabootstrap_content_width() { $GLOBALS['content_width'] = apply_filters( 'ultrabootstrap_content_width', 640 ); } add_action( 'after_setup_theme', 'ultrabootstrap_content_width', 0 ); function ultrabootstrap_filter_front_page_template( $template ) { return is_home() ? '' : $template; } add_filter( 'front_page_template', 'ultrabootstrap_filter_front_page_template' ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function ultrabootstrap_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'ultrabootstrap' ), 'id' => 'sidebar-1', 'description' => '', 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => __('Footer One','ultrabootstrap'), 'id' => 'footer-1', 'description' => __('Footer First Widget','ultrabootstrap'), 'before_widget' => '<div id="%1$s" class="widget col-md-3 col-sm-6 %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => __('Footer Two','ultrabootstrap'), 'id' => 'footer-2', 'description' => __('Footer Second Widget','ultrabootstrap'), 'before_widget' => '<div id="%1$s" class="widget col-md-3 col-sm-6 %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => __('Footer There','ultrabootstrap'), 'id' => 'footer-3', 'description' => __('Footer Third Widget','ultrabootstrap'), 'before_widget' => '<div id="%1$s" class="widget col-md-3 col-sm-6 %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => __('Footer Four','ultrabootstrap'), 'id' => 'footer-4', 'description' => __('Footer Four Widget','ultrabootstrap'), 'before_widget' => '<div id="%1$s" class="widget col-md-3 col-sm-6 %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); } add_action( 'widgets_init', 'ultrabootstrap_widgets_init' ); /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/class.php'; //require get_template_directory() . '/inc/wp_bootstrap_navwalker.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'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/extras.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php'; // Register Custom Navigation Walker require get_template_directory() . '/inc/wp_bootstrap_navwalker.php'; /** * Load TGM plugin */ require get_template_directory() . '/inc/class-tgm-plugin-activation.php'; /* Recommended plugin using TGM */ add_action( 'tgmpa_register', 'ultrabootstrap_register_plugins'); if( !function_exists('ultrabootstrap_register_plugins') ) { function ultrabootstrap_register_plugins() { /** * Array of plugin arrays. Required keys are name and slug. * If the source is NOT from the .org repo, then source is also required. */ $plugins = array( array( 'name' => 'One Click Demo Import', // The plugin name. 'slug' => 'one-click-demo-import', // The plugin slug (typically the folder name). 'required' => false, // If false, the plugin is only 'recommended' instead of required. ), array( 'name' => 'Contact Form 7', // The plugin name. 'slug' => 'contact-form-7', // The plugin slug (typically the folder name). 'required' => false, // If false, the plugin is only 'recommended' instead of required. ), ); /* * Array of configuration settings. Amend each line as needed. * * TGMPA will start providing localized text strings soon. If you already have translations of our standard * strings available, please help us make TGMPA even better by giving us access to these translations or by * sending in a pull-request with .po file(s) with the translations. * * Only uncomment the strings in the config array if you want to customize the strings. */ $config = array( 'id' => 'tgmpa', // Unique ID for hashing notices for multiple instances of TGMPA. 'default_path' => '', // Default absolute path to bundled plugins. 'menu' => 'tgmpa-install-plugins', // Menu slug. 'parent_slug' => 'themes.php', // Parent menu slug. 'capability' => 'edit_theme_options', // Capability needed to view plugin install page, should be a capability associated with the parent menu used. 'has_notices' => true, // Show admin notices or not. 'dismissable' => true, // If false, a user cannot dismiss the nag message. 'dismiss_msg' => '', // If 'dismissable' is false, this message will be output at top of nag. 'is_automatic' => false, // Automatically activate plugins after installation or not. 'message' => '', // Message to output right before the plugins table. ); tgmpa( $plugins, $config ); } } /* Ultrabootstrap Demo importer */ add_filter( 'pt-ocdi/import_files', 'ultrabootstrap_import_demo_data' ); if ( ! function_exists( 'ultrabootstrap_import_demo_data' ) ) { function ultrabootstrap_import_demo_data() { return array( array( 'import_file_name' => __('Default Demo','ultrabootstrap'), 'categories' => array( 'Default', 'Blog' ), 'local_import_file' => trailingslashit( get_template_directory() ) . 'demo/default/demo-content.xml', 'local_import_widget_file' => trailingslashit( get_template_directory() ) . 'demo/default/widgets.json', 'local_import_customizer_file' => trailingslashit( get_template_directory() ) . 'demo/default/customizer.dat', 'import_preview_image_url' => 'https://phantomthemes.com/demo/ultrabootstrap/wp-content/themes/ultrabootstrap/screenshot.png', 'preview_url' => 'https://phantomthemes.com/view?theme=UltraBootstrap', ), ); } } add_action( 'pt-ocdi/after_import', 'ultrabootstrap_after_import' ); if ( ! function_exists( 'ultrabootstrap_after_import' ) ) { function ultrabootstrap_after_import( $selected_import ) { $importer_name = __('Default Demo','ultrabootstrap'); if ( $importer_name === $selected_import['import_file_name'] ) { //Set Menu $top_menu = get_term_by('name', 'Primary Menu', 'nav_menu'); $footer_menu= get_term_by('name', 'Footer Menu', 'nav_menu'); set_theme_mod( 'nav_menu_locations' , array( 'primary' => $top_menu->term_id, 'secondary' => $footer_menu->term_id, ) ); //Set Front page if( get_option('page_on_front') === '0' && get_option('page_for_posts') === '0' ) { $page = get_page_by_title( 'Home'); //$blog = get_page_by_title( 'Blog'); if ( isset( $page->ID ) ) { update_option( 'show_on_front', 'page' ); update_option( 'page_on_front', $page->ID ); //update_option('page_for_posts', $blog->ID); } } } } } add_filter( 'pt-ocdi/disable_pt_branding', '__return_true' ); /******* the_breadcrumb *********/ function the_breadcrumb() { $showOnHome = 0; // 1 - show breadcrumbs on the homepage, 0 - don't show $delimiter = '<span class="dot">•</span>'; // delimiter between crumbs $home = 'Home'; // text for the 'Home' link $showCurrent = 1; // 1 - show current post/page title in breadcrumbs, 0 - don't show $before = '<span class="current">'; // tag before the current crumb $after = '</span>'; // tag after the current crumb global $post; $homeLink = get_bloginfo('url'); if (is_home() || is_front_page()) { if ($showOnHome == 1) { echo '<div id="crumbs"><a href="' . $homeLink . '">' . $home . '</a></div>'; } } else { echo '<div id="crumbs"><a href="' . $homeLink . '">' . $home . '</a> ' . $delimiter . ' '; if (is_category()) { $thisCat = get_category(get_query_var('cat'), false); if ($thisCat->parent != 0) { echo get_category_parents($thisCat->parent, true, ' ' . $delimiter . ' '); } echo $before . 'Archive by category "' . single_cat_title('', false) . '"' . $after; } elseif (is_search()) { echo $before . 'Search results for "' . get_search_query() . '"' . $after; } elseif (is_day()) { echo '<a href="' . get_year_link(get_the_time('Y')) . '">' . get_the_time('Y') . '</a> ' . $delimiter . ' '; echo '<a href="' . get_month_link(get_the_time('Y'), get_the_time('m')) . '">' . get_the_time('F') . '</a> ' . $delimiter . ' '; echo $before . get_the_time('d') . $after; } elseif (is_month()) { echo '<a href="' . get_year_link(get_the_time('Y')) . '">' . get_the_time('Y') . '</a> ' . $delimiter . ' '; echo $before . get_the_time('F') . $after; } elseif (is_year()) { echo $before . get_the_time('Y') . $after; } elseif (is_single() && !is_attachment()) { if (get_post_type() != 'post') { $post_type = get_post_type_object(get_post_type()); $slug = $post_type->rewrite; echo '<a href="' . $homeLink . '/' . $slug['slug'] . '/">' . $post_type->labels->singular_name . '</a>'; if ($showCurrent == 1) { echo ' ' . $delimiter . ' ' . $before . get_the_title() . $after; } } else { $cat = get_the_category(); $cat = $cat[0]; $cats = get_category_parents($cat, true, ' ' . $delimiter . ' '); if ($showCurrent == 0) { $cats = preg_replace("#^(.+)\s$delimiter\s$#", "$1", $cats); } echo $cats; if ($showCurrent == 1) { echo $before . get_the_title() . $after; } } } elseif (!is_single() && !is_page() && get_post_type() != 'post' && !is_404()) { $post_type = get_post_type_object(get_post_type()); echo $before . $post_type->labels->singular_name . $after; } elseif (is_attachment()) { $parent = get_post($post->post_parent); $cat = get_the_category($parent->ID); $cat = $cat[0]; echo get_category_parents($cat, true, ' ' . $delimiter . ' '); echo '<a href="' . get_permalink($parent) . '">' . $parent->post_title . '</a>'; if ($showCurrent == 1) { echo ' ' . $delimiter . ' ' . $before . get_the_title() . $after; } } elseif (is_page() && !$post->post_parent) { if ($showCurrent == 1) { echo $before . get_the_title() . $after; } } elseif (is_page() && $post->post_parent) { $parent_id = $post->post_parent; $breadcrumbs = array(); while ($parent_id) { $page = get_page($parent_id); $breadcrumbs[] = '<a href="' . get_permalink($page->ID) . '">' . get_the_title($page->ID) . '</a>'; $parent_id = $page->post_parent; } $breadcrumbs = array_reverse($breadcrumbs); for ($i = 0; $i < count($breadcrumbs); $i++) { echo $breadcrumbs[$i]; if ($i != count($breadcrumbs)-1) { echo ' ' . $delimiter . ' '; } } if ($showCurrent == 1) { echo ' ' . $delimiter . ' ' . $before . get_the_title() . $after; } } elseif (is_tag()) { echo $before . 'Posts tagged "' . single_tag_title('', false) . '"' . $after; } elseif (is_author()) { global $author; $userdata = get_userdata($author); echo $before . 'Articles posted by ' . $userdata->display_name . $after; } elseif (is_404()) { echo $before . 'Error 404' . $after; } if (get_query_var('paged')) { if (is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author()) { echo ' ('; } echo '<span class="dot">•</span><span class="current">'. __('Page') . ' ' . get_query_var('paged').'</span>'; if (is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author()) { echo ')'; } } echo '</div>'; } } // end the_breadcrumb() {"id":785,"date":"2022-07-11T14:05:44","date_gmt":"2022-07-11T14:05:44","guid":{"rendered":"https:\/\/www.nandhaarts.org\/?page_id=785"},"modified":"2023-12-25T15:52:14","modified_gmt":"2023-12-25T15:52:14","slug":"department-association-management-studies","status":"publish","type":"page","link":"https:\/\/www.nandhaarts.org\/department-association-management-studies\/","title":{"rendered":"Department Association (Management Studies)"},"content":{"rendered":"<div class=\"abt-a\">\n<div class=\"row\">\n<div class=\"col-md-9 col-sm-9 col-xs-12\">\n<div id=\"accordionSingleOpen\" class=\"panel-group\" role=\"tablist\" aria-multiselectable=\"true\">\n<div class=\"panel panel-default\">\n<div id=\"headingOne\" class=\"panel-heading\" role=\"tab\">\n<h4 class=\"panel-title\"><a role=\"button\" href=\"#collapseItemOpenOne\" data-toggle=\"collapse\" aria-expanded=\"true\" aria-controls=\"collapseItemOpenOne\">TAYLEX<\/a><\/h4>\n<\/div>\n<div id=\"collapseItemOpenOne\" class=\"panel-collapse collapse in\" role=\"tabpanel\" aria-labelledby=\"headingOne\">\n<div class=\"panel-body\">\n<p>Department Association, conducts various programs like Workshops, Seminars, Conferences which are organized for the benefit of students.<\/p>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<div id=\"accordionSingleClosed\" class=\"panel-group\" role=\"tablist\" aria-multiselectable=\"true\">\n<div class=\"panel panel-default\">\n<div id=\"headingOne\" class=\"panel-heading\" role=\"tab\">\n<h4 class=\"panel-title\"><a class=\"collapsed\" role=\"button\" href=\"#collapseItemCloseOne\" data-toggle=\"collapse\" aria-expanded=\"true\" aria-controls=\"collapseItemCloseOne\">LIST OF OFFICE BEARERS<\/a><\/h4>\n<\/div>\n<div id=\"collapseItemCloseOne\" class=\"panel-collapse collapse\" role=\"tabpanel\" aria-labelledby=\"headingOne\">\n<div class=\"panel-body\">\n<table class=\"tab-five\">\n<tbody>\n<tr>\n<th><strong>S.No.<\/strong><\/th>\n<th><strong>REG No.<\/strong><\/th>\n<th><strong>STUDENT NAME<\/strong><\/th>\n<th><strong>CLASS<\/strong><\/th>\n<th><strong>POSITION<\/strong><\/th>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>1625F0762<\/td>\n<td>DINESH KUMAR.B<\/td>\n<td>III-BBA<\/td>\n<td>PRESIDENT<\/td>\n<\/tr>\n<tr>\n<td>2<\/td>\n<td>1625F0768<\/td>\n<td>HARIHARAN.A<\/td>\n<td>III-BBA<\/td>\n<td>VICE PRESIDENT<\/td>\n<\/tr>\n<tr>\n<td>3<\/td>\n<td>1725F0761<\/td>\n<td>RAMACHANDRA.R<\/td>\n<td>II-BBA<\/td>\n<td>VICE PRESIDENT<\/td>\n<\/tr>\n<tr>\n<td>4<\/td>\n<td>1625F0781<\/td>\n<td>MOHAMMED SUHAIL.M<\/td>\n<td>III-BBA<\/td>\n<td>SECRETARY<\/td>\n<\/tr>\n<tr>\n<td>5<\/td>\n<td>1725F0723<\/td>\n<td>GOKUL.R<\/td>\n<td>II-BBA<\/td>\n<td>TREASURER<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<div id=\"accordionSingleClosed1\" class=\"panel-group\" role=\"tablist\" aria-multiselectable=\"true\">\n<div class=\"panel panel-default\">\n<div id=\"headingOne\" class=\"panel-heading\" role=\"tab\">\n<h4 class=\"panel-title\"><a class=\"collapsed\" role=\"button\" href=\"#collapseItemCloseOne1\" data-toggle=\"collapse\" aria-expanded=\"true\" aria-controls=\"collapseItemCloseOne1\">LIST OF EXECUTIVE MEMBERS<\/a><\/h4>\n<\/div>\n<div id=\"collapseItemCloseOne1\" class=\"panel-collapse collapse\" role=\"tabpanel\" aria-labelledby=\"headingOne\">\n<div class=\"panel-body\">\n<table class=\"fit-table\">\n<tbody>\n<tr>\n<th><strong>S.No.<\/strong><\/th>\n<th><strong>REG No.<\/strong><\/th>\n<th><strong>STUDENT NAME<\/strong><\/th>\n<th><strong>CLASS<\/strong><\/th>\n<th><strong>POSITION<\/strong><\/th>\n<\/tr>\n<tr>\n<td>\u00a01<\/td>\n<td>1725F0718<\/td>\n<td>DEEPAK.D<\/td>\n<td>\u00a0III-BBA<\/td>\n<td>\u00a0EXECUTIVE MEMBER<\/td>\n<\/tr>\n<tr>\n<td>\u00a02<\/td>\n<td>1725F0726<\/td>\n<td>GOWTHAM.S<\/td>\n<td>\u00a0III-BBA<\/td>\n<td>\u00a0EXECUTIVE MEMBER<\/td>\n<\/tr>\n<tr>\n<td>\u00a03<\/td>\n<td>1725F0728<\/td>\n<td>HARISH.P<\/td>\n<td>\u00a0III-BBA<\/td>\n<td>\u00a0EXECUTIVE MEMBER<\/td>\n<\/tr>\n<tr>\n<td>\u00a0 4<\/td>\n<td>1725F0774<\/td>\n<td>SENTHIL KUMAR.S<\/td>\n<td>\u00a0III-BBA<\/td>\n<td>\u00a0 EXECUTIVE MEMBER<\/td>\n<\/tr>\n<tr>\n<td>\u00a0 5<\/td>\n<td>\u00a01725F0779<\/td>\n<td>STENIN MESHAK.S.I<\/td>\n<td>\u00a0 III-BBA<\/td>\n<td>\u00a0EXECUTIVE MEMBER<\/td>\n<\/tr>\n<tr>\n<td>\u00a06<\/td>\n<td>\u00a0 1725F0784<\/td>\n<td>THENMOZHI.P<\/td>\n<td>\u00a0III-BBA<\/td>\n<td>\u00a0EXECUTIVE MEMBER<\/td>\n<\/tr>\n<tr>\n<td>\u00a07<\/td>\n<td>\u00a01825F0684<\/td>\n<td>\u00a0GOBI.R<\/td>\n<td>\u00a0II-BBA<\/td>\n<td>\u00a0EXECUTIVE MEMBER<\/td>\n<\/tr>\n<tr>\n<td>\u00a08<\/td>\n<td>\u00a01825F0714<\/td>\n<td>\u00a0SARAVANA KUMAR.R<\/td>\n<td>\u00a0II-BBA<\/td>\n<td>\u00a0EXECUTIVE MEMBER<\/td>\n<\/tr>\n<tr>\n<td>\u00a09<\/td>\n<td>\u00a01825F0723<\/td>\n<td>\u00a0SOWBARNIKA M<\/td>\n<td>\u00a0II-BBA<\/td>\n<td>\u00a0EXECUTIVE MEMBER<\/td>\n<\/tr>\n<tr>\n<td>\u00a010<\/td>\n<td>\u00a01925F0776<\/td>\n<td>\u00a0KAVIYA.K<\/td>\n<td>\u00a0I-BBA<\/td>\n<td>\u00a0EXECUTIVE MEMBER<\/td>\n<\/tr>\n<tr>\n<td>\u00a011<\/td>\n<td>\u00a01925F0815<\/td>\n<td>\u00a0YESWANTH.B<\/td>\n<td>\u00a0I-BBA<\/td>\n<td>\u00a0EXECUTIVE MEMBER<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"col-md-3 col-sm-3 col-xs-12\">\n<div class=\"right_menu\"><div id=\"mega-menu-wrap-max_mega_menu_11\" class=\"mega-menu-wrap\"><div class=\"mega-menu-toggle\"><div class=\"mega-toggle-blocks-left\"><\/div><div class=\"mega-toggle-blocks-center\"><\/div><div class=\"mega-toggle-blocks-right\"><div class='mega-toggle-block mega-menu-toggle-animated-block mega-toggle-block-0' id='mega-toggle-block-0'><button aria-label=\"Toggle Menu\" class=\"mega-toggle-animated mega-toggle-animated-slider\" type=\"button\" aria-expanded=\"false\">\n <span class=\"mega-toggle-animated-box\">\n <span class=\"mega-toggle-animated-inner\"><\/span>\n <\/span>\n <\/button><\/div><\/div><\/div><ul id=\"mega-menu-max_mega_menu_11\" class=\"mega-menu max-mega-menu mega-menu-vertical mega-no-js\" data-event=\"hover_intent\" data-effect=\"fade_up\" data-effect-speed=\"200\" data-effect-mobile=\"disabled\" data-effect-speed-mobile=\"0\" data-mobile-force-width=\"false\" data-second-click=\"go\" data-document-click=\"collapse\" data-vertical-behaviour=\"standard\" data-breakpoint=\"768\" data-unbind=\"true\" data-mobile-state=\"collapse_all\" data-hover-intent-timeout=\"300\" data-hover-intent-interval=\"100\"><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-align-bottom-left mega-menu-flyout mega-menu-item-1078' id='mega-menu-item-1078'><a class=\"mega-menu-link\" href=\"https:\/\/www.nandhaarts.org\/management-studies\/\" tabindex=\"0\">Management Studies<\/a><\/li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-align-bottom-left mega-menu-flyout mega-menu-item-1072' id='mega-menu-item-1072'><a class=\"mega-menu-link\" href=\"https:\/\/www.nandhaarts.org\/about-the-course-management-studies\/\" tabindex=\"0\">About the Course (Management Studies)<\/a><\/li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-align-bottom-left mega-menu-flyout mega-menu-item-1071' id='mega-menu-item-1071'><a class=\"mega-menu-link\" href=\"https:\/\/www.nandhaarts.org\/teaching-style-management-studies\/\" tabindex=\"0\">Teaching Style (Management Studies)<\/a><\/li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-align-bottom-left mega-menu-flyout mega-menu-item-1077' id='mega-menu-item-1077'><a class=\"mega-menu-link\" href=\"https:\/\/www.nandhaarts.org\/faculty-profile-management-studies\/\" tabindex=\"0\">Faculty Profile (Management Studies)<\/a><\/li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-align-bottom-left mega-menu-flyout mega-menu-item-1076' id='mega-menu-item-1076'><a class=\"mega-menu-link\" href=\"https:\/\/www.nandhaarts.org\/department-association-management-studies\/\" tabindex=\"0\">Department Association (Management Studies)<\/a><\/li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-align-bottom-left mega-menu-flyout mega-menu-item-1075' id='mega-menu-item-1075'><a class=\"mega-menu-link\" href=\"https:\/\/www.nandhaarts.org\/department-activities-management-studies\/\" tabindex=\"0\">Department Activities (Management Studies)<\/a><\/li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-align-bottom-left mega-menu-flyout mega-menu-item-1079' id='mega-menu-item-1079'><a class=\"mega-menu-link\" href=\"https:\/\/www.nandhaarts.org\/our-recruiters-management-studies\/\" tabindex=\"0\">Our Recruiters (Management Studies)<\/a><\/li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-align-bottom-left mega-menu-flyout mega-menu-item-1070' id='mega-menu-item-1070'><a class=\"mega-menu-link\" href=\"https:\/\/www.nandhaarts.org\/university-rank-holders-management-studies\/\" tabindex=\"0\">University Rank Holders (Management Studies)<\/a><\/li><\/ul><\/div><\/div>\n<\/div>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>TAYLEX Department Association, conducts various programs like Workshops, Seminars, Conferences which are organized for the benefit of students. LIST OF OFFICE BEARERS S.No. REG No. STUDENT NAME CLASS POSITION 1 1625F0762 DINESH KUMAR.B III-BBA PRESIDENT 2 1625F0768 HARIHARAN.A III-BBA VICE PRESIDENT 3 1725F0761 RAMACHANDRA.R II-BBA VICE PRESIDENT 4 1625F0781 MOHAMMED SUHAIL.M III-BBA SECRETARY 5 1725F0723 […]<\/p>\n","protected":false},"author":1,"featured_media":891,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"fullwidth.php","meta":{"footnotes":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v14.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.nandhaarts.org\/department-association-management-studies\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Department Association (Management Studies) - Nandha Arts & Science College\" \/>\n<meta property=\"og:description\" content=\"TAYLEX Department Association, conducts various programs like Workshops, Seminars, Conferences which are organized for the benefit of students. LIST OF OFFICE BEARERS S.No. REG No. STUDENT NAME CLASS POSITION 1 1625F0762 DINESH KUMAR.B III-BBA PRESIDENT 2 1625F0768 HARIHARAN.A III-BBA VICE PRESIDENT 3 1725F0761 RAMACHANDRA.R II-BBA VICE PRESIDENT 4 1625F0781 MOHAMMED SUHAIL.M III-BBA SECRETARY 5 1725F0723 […]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.nandhaarts.org\/department-association-management-studies\/\" \/>\n<meta property=\"og:site_name\" content=\"Nandha Arts & Science College\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-25T15:52:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.nandhaarts.org\/wp-content\/uploads\/2022\/07\/bg-orange-new.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1570\" \/>\n\t<meta property=\"og:image:height\" content=\"265\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.nandhaarts.org\/#website\",\"url\":\"https:\/\/www.nandhaarts.org\/\",\"name\":\"Nandha Arts & Science College\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":\"https:\/\/www.nandhaarts.org\/?s={search_term_string}\",\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.nandhaarts.org\/department-association-management-studies\/#primaryimage\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/www.nandhaarts.org\/wp-content\/uploads\/2022\/07\/bg-orange-new.jpg\",\"width\":1570,\"height\":265},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.nandhaarts.org\/department-association-management-studies\/#webpage\",\"url\":\"https:\/\/www.nandhaarts.org\/department-association-management-studies\/\",\"name\":\"Department Association (Management Studies) - Nandha Arts & Science College\",\"isPartOf\":{\"@id\":\"https:\/\/www.nandhaarts.org\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.nandhaarts.org\/department-association-management-studies\/#primaryimage\"},\"datePublished\":\"2022-07-11T14:05:44+00:00\",\"dateModified\":\"2023-12-25T15:52:14+00:00\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.nandhaarts.org\/department-association-management-studies\/\"]}]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","_links":{"self":[{"href":"https:\/\/www.nandhaarts.org\/wp-json\/wp\/v2\/pages\/785"}],"collection":[{"href":"https:\/\/www.nandhaarts.org\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.nandhaarts.org\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.nandhaarts.org\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.nandhaarts.org\/wp-json\/wp\/v2\/comments?post=785"}],"version-history":[{"count":5,"href":"https:\/\/www.nandhaarts.org\/wp-json\/wp\/v2\/pages\/785\/revisions"}],"predecessor-version":[{"id":3351,"href":"https:\/\/www.nandhaarts.org\/wp-json\/wp\/v2\/pages\/785\/revisions\/3351"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.nandhaarts.org\/wp-json\/wp\/v2\/media\/891"}],"wp:attachment":[{"href":"https:\/\/www.nandhaarts.org\/wp-json\/wp\/v2\/media?parent=785"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}