/* Widget Name: Button Description: Create a custom button with flexible styling, icon support, and click tracking functionality. Author: SiteOrigin Author URI: https://siteorigin.com Documentation: https://siteorigin.com/widgets-bundle/button-widget-documentation/ Keywords: event, icon, link */ class SiteOrigin_Widget_Button_Widget extends SiteOrigin_Widget { public function __construct() { parent::__construct( 'sow-button', __( 'SiteOrigin Button', 'so-widgets-bundle' ), array( 'description' => __( 'Create a custom button with flexible styling, icon support, and click tracking functionality.', 'so-widgets-bundle' ), 'help' => 'https://siteorigin.com/widgets-bundle/button-widget-documentation/', ), array( ), false, plugin_dir_path( __FILE__ ) ); } public function get_settings_form() { return array( 'responsive_breakpoint' => array( 'type' => 'measurement', 'label' => __( 'Responsive Breakpoint', 'so-widgets-bundle' ), 'default' => '780px', 'description' => __( 'This setting controls when the Mobile Align setting will be used. The default value is 780px.', 'so-widgets-bundle' ), ), ); } public function initialize() { $this->register_frontend_styles( array( array( 'sow-button-base', plugin_dir_url( __FILE__ ) . 'css/style.css', array(), SOW_BUNDLE_VERSION, ), ) ); } public function get_widget_form() { return array( 'text' => array( 'type' => 'text', 'label' => __( 'Button Text', 'so-widgets-bundle' ), ), 'url' => array( 'type' => 'link', 'label' => __( 'Destination URL', 'so-widgets-bundle' ), 'allow_shortcode' => true, ), 'new_window' => array( 'type' => 'checkbox', 'default' => false, 'label' => __( 'Open in a new window', 'so-widgets-bundle' ), ), 'download' => array( 'type' => 'checkbox', 'default' => false, 'label' => __( 'Download', 'so-widgets-bundle' ), 'description' => __( 'The Destination URL will be downloaded when a user clicks on the button.', 'so-widgets-bundle' ), ), 'button_icon' => array( 'type' => 'section', 'label' => __( 'Icon', 'so-widgets-bundle' ), 'fields' => array( 'icon_selected' => array( 'type' => 'icon', 'label' => __( 'Icon', 'so-widgets-bundle' ), ), 'icon_color' => array( 'type' => 'color', 'label' => __( 'Icon Color', 'so-widgets-bundle' ), ), 'icon' => array( 'type' => 'media', 'label' => __( 'Image Icon', 'so-widgets-bundle' ), 'description' => __( 'Replaces the icon with your own image icon.', 'so-widgets-bundle' ), ), 'icon_placement' => array( 'type' => 'select', 'label' => __( 'Icon Placement', 'so-widgets-bundle' ), 'default' => 'left', 'options' => array( 'top' => __( 'Top', 'so-widgets-bundle' ), 'right' => __( 'Right', 'so-widgets-bundle' ), 'bottom' => __( 'Bottom', 'so-widgets-bundle' ), 'left' => __( 'Left', 'so-widgets-bundle' ), ), ), ), ), 'design' => array( 'type' => 'section', 'label' => __( 'Design and Layout', 'so-widgets-bundle' ), 'hide' => true, 'fields' => array( 'width' => array( 'type' => 'measurement', 'label' => __( 'Width', 'so-widgets-bundle' ), 'description' => __( 'Leave blank to let the button resize according to content.', 'so-widgets-bundle' ), ), 'align' => array( 'type' => 'select', 'label' => __( 'Align', 'so-widgets-bundle' ), 'default' => 'center', 'options' => array( 'left' => __( 'Left', 'so-widgets-bundle' ), 'right' => __( 'Right', 'so-widgets-bundle' ), 'center' => __( 'Center', 'so-widgets-bundle' ), 'justify' => __( 'Full Width', 'so-widgets-bundle' ), ), ), 'mobile_align' => array( 'type' => 'select', 'label' => __( 'Mobile Align', 'so-widgets-bundle' ), 'default' => 'center', 'options' => array( 'left' => __( 'Left', 'so-widgets-bundle' ), 'right' => __( 'Right', 'so-widgets-bundle' ), 'center' => __( 'Center', 'so-widgets-bundle' ), 'justify' => __( 'Full Width', 'so-widgets-bundle' ), ), ), 'theme' => array( 'type' => 'select', 'label' => __( 'Button Theme', 'so-widgets-bundle' ), 'default' => 'flat', 'options' => array( 'atom' => __( 'Atom', 'so-widgets-bundle' ), 'flat' => __( 'Flat', 'so-widgets-bundle' ), 'wire' => __( 'Wire', 'so-widgets-bundle' ), ), ), 'button_color' => array( 'type' => 'color', 'label' => __( 'Button Color', 'so-widgets-bundle' ), ), 'text_color' => array( 'type' => 'color', 'label' => __( 'Text Color', 'so-widgets-bundle' ), ), 'hover' => array( 'type' => 'checkbox', 'default' => true, 'label' => __( 'Use hover effects', 'so-widgets-bundle' ), 'state_emitter' => array( 'callback' => 'conditional', 'args' => array( 'hover[show]: val', 'hover[hide]: ! val', ), ), ), 'hover_background_color' => array( 'type' => 'color', 'label' => __( 'Hover Background Color', 'so-widgets-bundle' ), 'state_handler' => array( 'hover[show]' => array( 'show' ), 'hover[hide]' => array( 'hide' ), ), ), 'hover_text_color' => array( 'type' => 'color', 'label' => __( 'Hover Text Color', 'so-widgets-bundle' ), 'state_handler' => array( 'hover[show]' => array( 'show' ), 'hover[hide]' => array( 'hide' ), ), ), 'font' => array( 'type' => 'font', 'label' => __( 'Font', 'so-widgets-bundle' ), 'default' => 'default', ), 'font_size' => array( 'type' => 'measurement', 'label' => __( 'Font Size', 'so-widgets-bundle' ), 'default' => '1em', ), 'icon_size' => array( 'type' => 'measurement', 'label' => __( 'Icon Size', 'so-widgets-bundle' ), 'default' => '1.3em', ), 'padding' => array( 'type' => 'measurement', 'label' => __( 'Padding', 'so-widgets-bundle' ), 'default' => '1em', ), 'rounding' => array( 'type' => 'multi-measurement', 'label' => __( 'Rounding', 'so-widgets-bundle' ), 'default' => '0.25em 0.25em 0.25em 0.25em', 'measurements' => array( 'top' => array( 'label' => __( 'Top', 'so-widgets-bundle' ), ), 'right' => array( 'label' => __( 'Right', 'so-widgets-bundle' ), ), 'bottom' => array( 'label' => __( 'Bottom', 'so-widgets-bundle' ), ), 'left' => array( 'label' => __( 'Left', 'so-widgets-bundle' ), ), ), ), ), ), 'attributes' => array( 'type' => 'section', 'label' => __( 'Other Attributes and SEO', 'so-widgets-bundle' ), 'hide' => true, 'fields' => array( 'id' => array( 'type' => 'text', 'label' => __( 'Button ID', 'so-widgets-bundle' ), 'description' => __( 'An ID attribute allows you to target this button in JavaScript.', 'so-widgets-bundle' ), ), 'classes' => array( 'type' => 'text', 'label' => __( 'Button Classes', 'so-widgets-bundle' ), 'description' => __( 'Additional CSS classes added to the button link.', 'so-widgets-bundle' ), ), 'title' => array( 'type' => 'text', 'label' => __( 'Title Attribute', 'so-widgets-bundle' ), 'description' => __( 'Adds a title attribute to the button link.', 'so-widgets-bundle' ), ), 'on_click' => array( 'type' => 'text', 'label' => __( 'Onclick', 'so-widgets-bundle' ), 'description' => __( 'Run this JavaScript when the button is clicked. Ideal for tracking.', 'so-widgets-bundle' ), 'onclick' => true, ), 'rel' => array( 'type' => 'text', 'label' => __( 'Rel Attribute', 'so-widgets-bundle' ), 'description' => __( 'Adds a rel attribute to the button link.', 'so-widgets-bundle' ), ), ), ), ); } public function get_style_name( $instance ) { if ( empty( $instance['design']['theme'] ) ) { return 'atom'; } return $instance['design']['theme']; } /** * Get the variables for the Button Widget. * * @return array */ public function get_template_variables( $instance, $args ) { $button_attributes = array(); $attributes = $instance['attributes']; $classes = ! empty( $attributes['classes'] ) ? $attributes['classes'] : ''; if ( ! empty( $classes ) ) { $classes .= ' '; } $classes .= 'sowb-button ow-icon-placement-' . $instance['button_icon']['icon_placement']; if ( ! empty( $instance['design']['hover'] ) ) { $classes .= ' ow-button-hover'; } $button_attributes['class'] = implode( ' ', array_map( 'sanitize_html_class', explode( ' ', $classes ) ) ); if ( ! empty( $instance['new_window'] ) ) { $button_attributes['target'] = '_blank'; $button_attributes['rel'] = 'noopener noreferrer'; } if ( ! empty( $instance['download'] ) ) { $button_attributes['download'] = null; } if ( ! empty( $attributes['id'] ) ) { $button_attributes['id'] = $attributes['id']; } if ( ! empty( $attributes['title'] ) ) { $button_attributes['title'] = $attributes['title']; } if ( ! empty( $attributes['rel'] ) ) { if ( isset( $button_attributes['rel'] ) ) { $button_attributes['rel'] .= " $attributes[rel]"; } else { $button_attributes['rel'] = $attributes['rel']; } } $icon_image_url = ''; if ( ! empty( $instance['button_icon']['icon'] ) ) { $attachment = wp_get_attachment_image_src( $instance['button_icon']['icon'] ); if ( ! empty( $attachment ) ) { $icon_image_url = $attachment[0]; } } return array( 'button_attributes' => apply_filters( 'siteorigin_widgets_button_attributes', $button_attributes, $instance ), 'href' => ! empty( $instance['url'] ) ? $instance['url'] : '', 'on_click' => ! empty( $attributes['on_click'] ) ? $attributes['on_click'] : '', 'align' => $instance['design']['align'], 'icon_image_url' => $icon_image_url, 'icon' => $instance['button_icon']['icon_selected'], 'icon_color' => $instance['button_icon']['icon_color'], 'text' => $instance['text'], ); } /** * Get the variables that we'll be injecting into the less stylesheet. * * @return array */ public function get_less_variables( $instance ) { if ( empty( $instance ) || empty( $instance['design'] ) ) { return array(); } $text_color = isset( $instance['design']['text_color'] ) ? $instance['design']['text_color'] : ''; $button_color = isset( $instance['design']['button_color'] ) ? $instance['design']['button_color'] : ''; $less_vars = array( 'button_width' => isset( $instance['design']['width'] ) ? $instance['design']['width'] : '', 'button_color' => $button_color, 'text_color' => $text_color, 'icon_size' => ! empty( $instance['design']['icon_size'] ) ? $instance['design']['icon_size'] : '1.3em', 'hover_text_color' => ! empty( $instance['design']['hover_text_color'] ) ? $instance['design']['hover_text_color'] : $text_color, 'hover_background_color' => ! empty( $instance['design']['hover_background_color'] ) ? $instance['design']['hover_background_color'] : $button_color, 'font_size' => isset( $instance['design']['font_size'] ) ? $instance['design']['font_size'] : '', 'rounding' => isset( $instance['design']['rounding'] ) ? $instance['design']['rounding'] : '', 'padding' => isset( $instance['design']['padding'] ) ? $instance['design']['padding'] : '', 'has_text' => empty( $instance['text'] ) ? 'false' : 'true', 'responsive_breakpoint' => $this->get_global_settings( 'responsive_breakpoint' ), 'align' => ! empty( $instance['design']['align'] ) ? $instance['design']['align'] : 'center', 'mobile_align' => ! empty( $instance['design']['mobile_align'] ) ? $instance['design']['mobile_align'] : 'center', 'has_button_icon' => empty( $instance['button_icon']['icon_selected'] ) ? 'false' : 'true', ); if ( ! empty( $instance['design']['font'] ) ) { $font = siteorigin_widget_get_font( $instance['design']['font'] ); $less_vars['button_font'] = $font['family']; if ( ! empty( $font['weight'] ) ) { $less_vars['button_font_weight'] = $font['weight_raw']; $less_vars['button_font_style'] = $font['style']; } } return $less_vars; } /** * Make sure the instance is the most up to date version. * * @return mixed */ public function modify_instance( $instance ) { if ( empty( $instance ) ) { return array(); } $migrate_props = array( 'button_icon' => array( 'icon_selected', 'icon_color', 'icon', ), 'design' => array( 'align', 'theme', 'button_color', 'text_color', 'hover', 'hover_text_color', 'hover_background_color', 'font_size', 'rounding', 'padding', ), 'attributes' => array( 'id', ), ); foreach ( $migrate_props as $prop => $sub_props ) { if ( empty( $instance[ $prop ] ) ) { $instance[ $prop ] = array(); foreach ( $sub_props as $sub_prop ) { if ( isset( $instance[ $sub_prop ] ) ) { $instance[ $prop ][ $sub_prop ] = $instance[ $sub_prop ]; unset( $instance[ $sub_prop ] ); } } } } // Migrate onclick setting to prevent Wordfence flag. if ( ! empty( $instance['attributes'] ) && ! empty( $instance['attributes']['onclick'] ) ) { $instance['attributes']['on_click'] = $instance['attributes']['onclick']; } // If the mobile_align setting isn't set, set it to the same value as the align value. if ( ! empty( $instance['design'] ) && ! empty( $instance['design']['align'] ) && empty( $instance['design']['mobile_align'] ) ) { $instance['design']['mobile_align'] = $instance['design']['align']; } // Migrate predefined settings to more customizable settings. if ( ! empty( $instance['design']['font_size'] ) && is_numeric( $instance['design']['font_size'] ) ) { $instance['design']['font_size'] .= 'em'; } if ( ! empty( $instance['design']['padding'] ) && is_numeric( $instance['design']['padding'] ) ) { $instance['design']['padding'] .= 'em'; } if ( ! empty( $instance['design']['rounding'] ) && is_numeric( $instance['design']['rounding'] ) ) { $instance['design']['rounding'] = $instance['design']['rounding'] . 'em ' . $instance['design']['rounding'] . 'em ' . $instance['design']['rounding'] . 'em ' . $instance['design']['rounding'] . 'em'; } if ( empty( $instance['design']['icon_size'] ) ) { $instance['design']['icon_size'] = '1.3em'; } return $instance; } public function get_form_teaser() { if ( class_exists( 'SiteOrigin_Premium' ) ) { return false; } return array( sprintf( __( 'Add a beautiful tooltip to the Button Widget with %sSiteOrigin Premium%s', 'so-widgets-bundle' ), '', '' ), ); } } siteorigin_widget_register( 'sow-button', __FILE__, 'SiteOrigin_Widget_Button_Widget' );{"id":58558,"date":"2026-05-20T14:02:57","date_gmt":"2026-05-20T14:02:57","guid":{"rendered":"https:\/\/klecet.edu.in\/alumni\/?p=58558"},"modified":"2026-05-20T14:02:58","modified_gmt":"2026-05-20T14:02:58","slug":"mandalay-bay-opinion-2024","status":"publish","type":"post","link":"http:\/\/klecet.edu.in\/alumni\/mandalay-bay-opinion-2024\/","title":{"rendered":"Mandalay Bay Opinion 2024"},"content":{"rendered":"

You have viewed Food Network’s “Too Hot Tamales,”, you can now delight in its enjoyable and savory fare from inside the a good hip, metropolitan conditions when you ignore the seashore and you will pool urban area during the Mandalay Bay Resorts & Local casino within the Vegas. R\u00ed R\u00e1 Irish Club – A true Irish club feel, on the venue into the food, which have real time tunes and an intensive drinks listing. So it vintage bistro provides regional and you can regular French cooking. Pick an impressive range of fine wine, Japanese whiskeys, ultra-premium sakes, and you can expertise libations to fit your own restaurants sense. Admission toward Couch and next-top night life is free having dining visitors. New libations try a good-plenty as well having energizing classics and you can novel designs like Cucumber Zen, Finest Gin & Tonic as well as the Ginza Fashioned, that is available with the thorough Expertise Beverages Diet plan.<\/p>\n

Whilst\u2019s with the Vegas strip, an abundance of their business is brought in each year because of the travelers. Although not, the venue hold 100 percent free poker sessions when you look at the day, where experienced dealers reveal beginners the ropes and gives invaluable suggestions. We\u2019ve done all of our far better be certain that we\u2019ve secured most of the most significant factors, however, around\u2019s destined to become a few things i\u2019ve overlooked.<\/p>\n

Have some a great-natured fun which have bingo or take a spin on effective $3 million during the Keno Couch. Which lodge is also recognized for the video poker servers, emotional slots, and local casino classics. New Jumbo Hold\u2019em Web based poker Modern jackpot initiate during the $125,000 and you may increases day-after-day. With over 118,000ft\u00b2 out-of betting space, Red Material has the benefit of a myriad of an easy way to have a great time and you may victory big. For people who\u2019re also trying to find a local casino lodge from the Las vegas Remove, here are a few Purple Rock Casino. Together with, don\u2019t ignore you to Treasure Area is just one of the most readily useful son-friendly rooms within the Vegas features a no cost nighttime light reveal which have pirates and you will pyrotechnics.<\/p>\n

It means before you go playing Mandalay Bay Wide range to Gamdom<\/a> possess actual you\u2019ll be aware of that which you in advance of putting money on new line. Think about it along these lines new demo was an effective a hundred% the same replica of the real cash version your\u2019d play with whenever to experience for real. Prepared to give Mandalay Bay Wealth a chance but want an effective no-risk solution first prior to using real cash before anything else? The reason for Higher.com is to try to provide many for the charitable money if you find yourself support players inside the staying as well as learn how to winnings more often. All of our main mission would be to would a business one to loans the most powerful charities international. On iGamingToday, we’re seriously interested in bringing you new and most related information regarding field of on the web betting.<\/p>\n

It\u2019s generally slot machines with a couple pouches out-of desk games (the latest Lapa Lounge is actually a beneficial paritcularly cool location that have tabletop electronic poker). The newest sportsbook and additionally pulls quite the group toward games days. It\u2019s an effective about three-peak room that have stadium chair getting close to 1,one hundred thousand individuals who is sold with 49 bartop gambling computers. The newest web based poker area have 13 tobacco cigarette-100 percent free dining tables that have cash game of the many account. Although it\u2019s new regarding a casino renovate, downtown\u2019s El Cortez continues to have a very good dated Vegas getting\u2014therefore we want it for that.<\/p>\n

Addressing this from the Marriott Bonvoy Professional front given that good Marriott Bonvoy Titanium, new Marriott pros are very light when compared to a consistent Marriott Bonvoy assets. This would mark the girl very first visit to the home and you will my 3rd journey, that have went along to a few times in earlier times. As the Vegas becomes higher summer environment temperature in the later summer, MrsWT73 planned to wade take a look at Mandalay Bay seashore and you can pool. \u201cA last leading property of your own MGM Lodge collection, Mandalay Bay Lodge & Gambling enterprise nonetheless brings specific restricted really worth in the latest Marriott Bonvoy \u2013 MGM Range union\u201d Keep reading to see exactly what the home is such as underneath the the brand new plan. The entries should be acquired towards the end of one’s Sweepstakes Admission Several months is qualified to receive the fresh Sweepstakes.<\/p>\n

Therefore, we don\u2019t suggest gaming $25+ on six-5 dining tables. Unfortunately, 6-5 it is likely that the actual only real earnings to possess blackjack unless you’re to try out into $25 dining table, in which case it\u2019s 3-dos. Zero like might have been lost, plus it\u2019s nevertheless a great destination to would any kind of welfare you the extremely when taking place travel. Offered your don\u2019t must wrestle almost as often site visitors getting back in and you will out of Mandalay Bay, it will make it that much more appealing getting locals to hang out here too.<\/p>\n

As one of the very needed-after games, blackjack from the Mandalay Bay offers a fantastic feel. The gambling establishment on Mandalay Bay is known for the extensive solutions of dining table video game, providing so you’re able to participants of all the levels. Having a huge variety of gambling choice, magnificent amenities, and an exciting atmosphere, it\u2019s popular one of one another everyday gamblers and you can big spenders. Therefore wear\u2019t end up being daunted otherwise worried about purchasing huge amounts so you’re able to climb up the new sections. Personally, I’m already towards the next tier, Pearl level, i am also getting now offers off free bed room, 100 percent free position gamble, waived lodge fees and you can lodge borrowing from the bank as well.<\/p>\n

Which have a giant golden tower, the property is special and you may memorable. The house requests brand new south west really venue of every Las Vegas Strip Casino. Marriott Bonvoy members have the 5th evening 100 percent free whenever redeeming four or even more go out sit.<\/p>\n

For those who enjoyed all of our Mandalay Bay opinion, return into the homepage or check out best casinos in the Nevada. Shortly after experiencing so many MGM In the world Resort locations inside our review show, we\u2019ve visited predict a specific important. The qualities is actually regulated by Vegas Gaming Control interface, so you can be assured around\u2019s zero danger of bad or shady enjoy. Even today, tram functions still focus on involving the spots, making it possible for easy and quick passage towards hotel in addition to their services. Let your hair down and you may bring a cocktail since the children enjoy in the eleven-acre aquatic playground, detailed with enjoyable surf and a small waterfall.<\/p>\n

You can make comps, expenses back again to your room, and so on away from any MGM property for the Vegas, that is a pleasant cheer. The new table online game minimums are very practical getting Mlife casinos on the this new remove complete, some time on the top of the range of your own variety some times yet not such as for example Bellagio, including, about what We\u2019ve seen. Dining table games were there but also for how big the newest gaming flooring, there\u2019s not a large amount. Electronic poker have plenty of kinds, with a few halfway decent paytables into the specific host designs to have Jacks or Ideal, particularly great deal of thought\u2019s the fresh new Vegas remove. They likewise have loads of modern video game, which is by way of its which have 135,100000 sqft out-of readily available playing area. Make your fulfilling now and you will phone call Mandalay Bay.<\/p>\n

Have fun with the Mandalay Bay Wealth slot and you will end in has including immediate cash and you will jackpot series, also respins which have people mix of longer reels, multipliers, or gold coins because from the beginning. In the event your X Multiplier tits respins gamble aside, all of the wins twice inside value, just like the + Develop tits increases the size of brand new reels, providing you with a whole lot more cities to help you house men and women beneficial gold coins. You earn three respins with just Instantaneous Prize Gold coins, jackpots, otherwise blanks you to definitely wear\u2019t number. New large volatility need to try out at a consistent level in which the bankroll normally endure several losses consecutively, although the fresh come back to people away from 96.20% is actually respected, it\u2019s maybe not very generous. For small or large meetings and procedures on nearly that million sq ft out of display space for the several levels, where breakout room which have 75 simultaneous group meetings is covered, it the area to hold your incidents. Nearby gambling establishment, found about 10 miles about Remove, is a gaming-heavy assets which have 83,100 sqft out of casino room laden up with 2,3 hundred slots and you may sixty-along with desk video game.<\/p>\n","protected":false},"excerpt":{"rendered":"

You have viewed Food Network’s “Too Hot Tamales,”, you can now delight in its enjoyable and savory fare from inside the a good hip, metropolitan conditions when you ignore the seashore and you will pool urban area during the Mandalay Bay Resorts & Local casino within the Vegas. R\u00ed R\u00e1\u2026<\/p>\n

Continue reading<\/span><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-58558","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/58558","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/comments?post=58558"}],"version-history":[{"count":1,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/58558\/revisions"}],"predecessor-version":[{"id":58559,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/58558\/revisions\/58559"}],"wp:attachment":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/media?parent=58558"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/categories?post=58558"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/tags?post=58558"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}