/* 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":40897,"date":"2026-05-20T10:22:11","date_gmt":"2026-05-20T10:22:11","guid":{"rendered":"https:\/\/klecet.edu.in\/alumni\/?p=40897"},"modified":"2026-05-20T10:22:12","modified_gmt":"2026-05-20T10:22:12","slug":"what-are-the-best-harbors-playing-at-hard-rock-hollywood","status":"publish","type":"post","link":"http:\/\/klecet.edu.in\/alumni\/what-are-the-best-harbors-playing-at-hard-rock-hollywood\/","title":{"rendered":"What are the Best Harbors playing at Hard-rock Hollywood?"},"content":{"rendered":"

Following, in case the friend places $fifty in on-line casino bets, you\u2019ll one another get a $fifty added bonus. Or even make use of fifty every single day incentive spins, they’re going to expire for the day, and the pursuing the day of spins could be given. You really have 14 days to utilize the bonus loans you will get in the lossback. Consider, you have one week to generally meet the new betting criteria to the incentive revolves before every earnings will be withdrawn. For more information throughout the greeting has the benefit of away from best workers, head to our very own DraftKings Local casino promo code, Fans Casino promo code, and you may bet365 Gambling enterprise incentive password profiles. If you are searching to own a no deposit added bonus, definitely check out the BetMGM Gambling establishment promo code and you can Caesars Palace promo code pages, since they might be the only real two providers currently giving that.<\/p>\n

These earnings constantly can be found in the type of repeated faster wins rather than large victories. Harbors with an RTP regarding 96% or maybe more are often considered to get the very best winnings. Yes, you might play ports the real deal profit the fresh new You.S. by visiting offshore local casino internet that enable you to deposit loans, bet him or her into ports, and withdraw your payouts as the real money. To keep safe, prevent internet sites noted for slow earnings, unclear small print, or poor customer service.<\/p>\n

We supply games which might be exclusively into Seminole Gambling enterprises, to enhance your betting experience. New local casino\u2019s newest products include ten craps and you can 20 roulette tables, once the made possible from the group\u2019s revised betting compact reached with Florida Gov. Ron DeSantis (R) from inside the 2021. Every Hollywood Casinos enjoys a lot of harbors on exactly how to talk about, so there\u2019s need not follow something you don\u2019t enjoy.<\/p>\n

\u2022 Totally free Chips\u2014Have fun with the online game daily to locate free chips! Play private Hard-rock Position & Online casino games a reasonable anticipate added bonus to begin with their Vegas-style real time gambling enterprise games enjoyable anytime, anyplace! Starburst is a superb 1st step due to the effortless gameplay and you may reasonable volatility. Sign up for Hard-rock Bet today, deposit $20, and luxuriate in $25 Gambling establishment Incentive with no Deposit + 100% Deposit Match up so you can $1,one hundred thousand to help you kickstart your gambling excitement! They implement this new security tech to safeguard private and you may financial advice, making it possible for users to operate only on the betting experience.<\/p>\n

Hard rock Wager includes an intensive library from video game, having ports as being the center of attention of the products. Hard rock Bet’s program was created to the affiliate in your mind. Hard rock Bet even offers a variety of position games, providing to each player’s taste, together with classic titles, video-heavier online game, and you will progressive jackpots. For folks who\u2019re also planning on visiting the Hard-rock Gambling establishment and you will looking to their fortune during the slots, you’re curious how to start off. Such games can offer a number of the high earnings offered at brand new gambling establishment, even so they come with large threats. These online game function very first image and you may mechanics but have a tendency to give high winnings than simply the more difficult counterparts.<\/p>\n

Brand new consumers during the Hard rock Bet Casino immediately sign-up a few benefits software of go out one to, along with your play earns advances in both while doing so. Brand new $50 bonus for players is actually more than average, nevertheless 5x rollover specifications try more strict than simply most web based casinos\u2019 recommendation incentives. The latest lossback part was important one of on-line casino bonuses today and you can functions by giving bonus money for those who have an online losings just after the first 24 hours. However, don\u2019t be very impressed in case the efficiency vary notably, as the Huff Letter\u2019 Puff is an incredibly unpredictable game.<\/p>\n

This really is primarily as a consequence of their arcade-concept visuals and easy however, quick-paced game play. This can be prime if you enjoy quirky, well-designed ports that have a dream line. Great features is Stake7<\/a> wilds, secret signs, and you may a bonus round where you are able to concoct magical potions getting most gains. It gritty west inspired slot even offers certain severe game play, however with a wacky comical style design.<\/p>\n

The option spans vintage around three-reel games, modern movies ports, Megaways titles, Bonus Purchase slots, and you may progressive jackpots off a variety of builders. The fresh catalog leans greatly for the slots, that is fundamental for people casinos on the internet. Hard-rock Bet Local casino supporting a lot fewer put and you will detachment actions than most other big online gambling labels, however it compensates by providing less-than-average handling times. Label confirmation is actually basic across all-licensed United states of america casinos on the internet. Unity is the international loyalty system you to definitely covers Hard-rock Local casino\u2019s online choices and you may property-established attributes. Most of the Thursday, Hard rock Bet releases \u201cAward Falls\u201d predicated on your top.<\/p>\n

It is becoming instantaneous through the cashier\u2019s crate otherwise TITO discount redemption terminals, and you will reduced than just also punctual payout online casinos. For many who\u2019re a good Unity Perks representative, there\u2019s as well as the accessibility to setting up a beneficial You-Handbag. Adorned inside the products, browns and you may golds, the large limitation bedroom try deliberately tailored in a different way into head gambling establishment flooring. This is exactly a personal area with high table minimums, a private pub, free beverages waitress provider and you may a selected cashier.<\/p>\n

The best commission online casinos give games one to mathematically come back much more toward pro. Gambling establishment Incentive away from Greet Give Losses Back could well be issued contained in this 1 day of the stop of one’s bonus generating several months and you may sells 5x wagering want…See A great deal more Have to place $10+ from inside the cumulative bucks wagers on the any Fans Online casino games within 7 days of registering in order to re…Discover Alot more FanDuel is normally quoted just like the which have a number of the fastest on-line casino profits, that have age-purse transactions canned in two hours. Hard-rock Bet excels during the consumer experience and you may commitment consolidation as a consequence of the Unity system, it is therefore an aggressive on-line casino with of the greatest profits. In the world recognized for the exclusive technical, bet365 offers the very best online casinos that payout immediately through \u201cbet365 Mastercard.\u201d<\/p>\n

Simultaneously, tourist can also enjoy video poker, films craps, and you may video roulette games for even even more playing solutions. Of these trying to a very private feel, brand new Highest Limit Harbors room gifts numerous classic and you will reducing-border slots. The newest Seminole Hard-rock Resorts & Gambling enterprise Hollywood even offers an inflatable playing experience in dos,five-hundred popular slots, nearly 2 hundred dining table game, and you may a recently added forty-five-table casino poker place. Hard-rock Biloxi is actually a premier place to go for playing lovers appearing to have an unmatched playing sense.<\/p>\n

Come across less than having details and also to find out about our Table Online game choices. Casinos18 are a dependable capital to own court 18+ casinos on the internet, sports betting internet sites, and you may state-by-county betting courses on You.S. The house or property is are AAA Five Diamond-rated, Environmentally friendly Lodging Formal hotel with more than step one,100 luxury bed room. The fresh new Seminole Hard rock Hollywood is extremely happy with its resort offerings\u2013 for good reason. In the event that live shows aren\u2019t what an 18+ patron is seeking, dining and you can lounges can be acquired across the whole Seminole Tough Rock Hollywood property. If the 18 and up gamblers have an interest in earning local casino bonuses, the most suitable choice is always to play on one of the better online casinos checked on this site.<\/p>\n

From penny harbors so you’re able to large-restrict computers, Mohegan Sunshine provides a captivating gaming experience where most of the twist retains effective potential. Which have amicable services and you may good earnings, it\u2019s a real nod so you can old Las vegas one provides professionals future right back. El Cortez blends vintage charm having progressive play, providing the newest slot machines next to classic preferred \u2014 together with a cherished part of modern money-work harbors. Its modern jackpots, cent harbors, and higher-denomination machines mean there is something for everyone spending plans. Louisiana’s premier gambling enterprise lodge is sold with nearly 2,100000 slot machines pass on across the multiple gaming areas that will help keep you amused via your go to.<\/p>\n","protected":false},"excerpt":{"rendered":"

Following, in case the friend places $fifty in on-line casino bets, you\u2019ll one another get a $fifty added bonus. Or even make use of fifty every single day incentive spins, they’re going to expire for the day, and the pursuing the day of spins could be given. You really have\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-40897","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/40897","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=40897"}],"version-history":[{"count":1,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/40897\/revisions"}],"predecessor-version":[{"id":40898,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/40897\/revisions\/40898"}],"wp:attachment":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/media?parent=40897"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/categories?post=40897"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/tags?post=40897"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}