/* 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":40909,"date":"2026-05-20T10:22:41","date_gmt":"2026-05-20T10:22:41","guid":{"rendered":"https:\/\/klecet.edu.in\/alumni\/?p=40909"},"modified":"2026-05-20T10:22:42","modified_gmt":"2026-05-20T10:22:42","slug":"attention-called-for-cloudflare","status":"publish","type":"post","link":"http:\/\/klecet.edu.in\/alumni\/attention-called-for-cloudflare\/","title":{"rendered":"Attention Called for! Cloudflare"},"content":{"rendered":"

I\u2019ve saw brand new bright surroundings first hand, where users take pleasure in just the brand new video game and also exceptional hospitality. Subscribe myself whenever i dive on most readily useful slots during the Seminole Hard rock Tampa, while having prepared to raise your gaming sense so you can a whole the brand new height. Of antique preferences into most recent large-technology game, there\u2019s anything for all. Along with its brilliant environment and you can business-category business, so it local casino now offers an impressive selection off slot machines one to accommodate to each form of player.<\/p>\n

This new Table Game area provides real time buyers, giving numerous well-known game along with craps, roulette, black-jack, baccarat, and small-baccarat. Its thoughtfully tailored room creates a calming but really pleasing atmosphere, making it possible for players to love prolonged playing instruction for the a very personal environment. Which have a wide selection of top-high quality slots and you may a captivating playing conditions, Hard-rock Biloxi offers a betting feel like not any other. But wear\u2019t romantic the sight for too long or if you\u2019ll miss out the flashing lights you to definitely nearly sing when you win. Through providing an exciting, high-energy ecosystem that shows the range and internationally heart out-of Southern Florida, Seminole Hard rock Local casino will subscribe an entire and you may memorable FIFA Globe Mug 2026™ feel to own folks and you will citizens alike during the the landmark Seminole Hard Stone Casino Hollywood.<\/p>\n

However, during the 2019, a whopping $step 1.5 billion is invested, so it is toward leading gambling establishment resort of Hard-rock Around the world that individuals find today. But not, I\u2019yards not sure there\u2019s enough low-betting sites and work out myself should remain for over a couple of nights. I additionally appreciated the brand new large and you may comfortable college accommodation as well as the Hard-rock collectibles that one can spend-all day gonna. The modern one to during the Hard-rock Tampa gives the new members good 100 percent free Unity of the Hard rock T-clothing together with around $five hundred freeplay according to very first time casino losings. Bring some photos ID into Unity Benefits dining table for the this new gambling enterprise therefore\u2019ll be great to visit. It\u2019s smaller than one during the sibling assets Hard rock Hollywood, but it’s however a very better-furnished business.<\/p>\n

Antique jewels rating an effective push inform, moving forward reels accomplish traces while piled multipliers (2x+) convergence towards the wilds. Hottie symbols spark respins, wilds and you can scatters keep hits constant, therefore the disco theme adds quirky appeal. The Piggy Wide range saga evolves with crisper visuals and you may strolling wilds that end in respins across the growing grids. Quick, punchy training which have fulfilling winnings \u2013 ideal for brief trips one leave you grinning (and you can richer). Old-college or university Las vegas suits progressive jackpots inside minimal-date exclusive. This really is comparable to regarding cuatro era a-day within $dos.50 average bet for every twist.<\/p>\n

I don\u2019t imagine Seminole Hard-rock Tampa features some of these video game offered, at least not at my past check out some time ago. Amongst the extra game, progressive jackpots, loaded wilds, or any other has, Lightning Connect also provides players a lot having a comparatively small funding. Like, for many who put $five-hundred now and you will become having $350 the next day, you\u2019ll discover $150 since a beneficial 1x casino incentive. The winnings off today’s modern slot machines decided due to an excellent haphazard amount generator.<\/p>\n

Later in the day around\u2019s a white let you know synced to music that happens playing with LEDs integrated into the medial side of the drums. It\u2019s a pretty majestic site, and you can certainly an announcement that produces a viewpoint to people coming off to see. The latest crown treasure of the property ‘s the Guitar Hotel, an initial-of-its-type building filled with six strong lights that take on sky later in the day so you’re able to invoke your guitar shoulder. As stated about addition, the home might have been by way of particular major updates lately.<\/p>\n

For people who\u2019lso are in search of an unforgettable playing experience, Seminole Hard-rock Tampa is the perfect place to-be. And when your don\u2019t have any luck to tackle slots during the Hard-rock Tulsa, Lake Soul Gambling establishment and Resorts Tulsa and you will Osage Casino Tulsa was vegas wins casino bonus utan ins\u00e4ttning<\/a> just twenty minutes aside. When you\u2019re choosing the greatest gambling establishment in Tulsa, Ok, see Lake Spirit. However, for individuals who\u2019re also likely to enjoy slots when you look at the Tulsa, you can travel to most of the around three casinos to determine what slots you adore most readily useful. For folks who\u2019lso are seeking the most useful slot machines during the Tulsa, you probably don\u2019t proper care in which you play. Merely wear\u2019t score portion of the a good shark, because they search real adequate to chomp you.<\/p>\n

Of many casinos bring bonus requirements directly on its extra guidance profiles, and others give exclusive codes so you can couples and you may associates. Brand new people can also claim a good greeting extra, providing extra loans to explore Ignition\u2019s exclusive position collection. And you may Betsoft Playing, providing numerous templates \u2014 of classic fruits machines to help you Wild West adventures and you will Greek mythology. With well over 20 private on line position titles you won\u2019t get a hold of elsewhere, Ignition Local casino shines because most readily useful online slots games gambling establishment getting original unique content. Caf\u00e9 Gambling establishment has reasonable minimum bets also, having for every-twist bets birth from the $0.ten to have games such as for example Bamboo Luck, so lead indeed there today and check out particular ports into the a relaxed, low-limits environment. You\u2019ll come across online game regarding top team such as for instance Real-time Gaming, Arrow\u2019s Boundary, and you will Visionary iGaming, known for the immersive game play and cutting-border have.<\/p>\n

Choosing the right slot machine at Hard-rock Local casino is also significantly increase gambling feel while increasing your chances of effective. Opting for highest RTP harbors on Hard rock Local casino just develops your odds of profitable and in addition advances your overall gaming sense. During the Hard rock Gambling enterprises, participants find many different large RTP slots you to boost their betting sense. High RTP harbors generally speaking bring greatest enough time-name payouts, nonetheless can vary with respect to chance and prize. Making use of these totally free gamble options might be a powerful way to become familiar with the difficult material slot machine game and produce steps without having any stress regarding losing money. These possibilities allows you to check out more hard rock gambling enterprise slot machines versus risking your own bankroll.<\/p>\n

However, there are certain slots you to constantly rank high within the prominence and you will payouts. In this post, we’re going to talk about a number of the most readily useful slots you must look into to try out via your next visit to Hard rock. You\u2019re all set to receive the fresh studies, professional advice, and you may personal has the benefit of right to your own email. Join all of our publication discover PlayUSA\u2019s latest hand-on the analysis, expert advice, and you can exclusive has the benefit of lead to their inbox.<\/p>\n

Prepare into the best playing knowledge of Awesome Superstar Web based poker\u00ae. Having excellent illustrations or photos and an immersive tunes sense, this video game was designed to host the senses and keep maintaining your coming back for lots more. The room comes with the 4 semi-personal playing portion which have servers offering denominations to $500. Hard-rock Atlantic City’s Large Restrict could have been prolonged by 72 the new slots having an entire Highest Maximum providing more than 250 hosts. Ready yourself to raise their playing feel, redefining how you stand, gamble and victory. Best of all, the profits is actually big, meaning you\u2019lso are just one spin from traditions this new stone-celebrity lives.<\/p>\n

Hard-rock Hollywood keeps a reputation to possess providing the most recent games in the market. Each day tournaments and you may game arrive twenty-four hours a day and you may differences were Restrict with no-Restrict Colorado Hold\u2019em, Omaha hello-lo and you will 7-card Stud. Throughout the day you’ll get a hold of $5 choice minimums, in the night more dining tables was in fact $twenty-five minimum.<\/p>\n

This type of competitions vary out-of single-date events towards WPT show, and this persists multiple weeks. Brand new Seminole Hard-rock does not have bingo with the-site, even when interested members can visit the nearby Seminole Antique Gambling enterprise getting instance video game. Depending on the Seminole Hard-rock\u2019s online privacy policy, nobody not as much as 21 can get play towards the possessions or loiter regarding the local casino elements. While casinos on the internet give some of the finest options for 18+ bettors, certain parts in the usa succeed domestic, in-person play for men and women significantly less than 21.<\/p>\n","protected":false},"excerpt":{"rendered":"

I\u2019ve saw brand new bright surroundings first hand, where users take pleasure in just the brand new video game and also exceptional hospitality. Subscribe myself whenever i dive on most readily useful slots during the Seminole Hard rock Tampa, while having prepared to raise your gaming sense so you can\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-40909","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/40909","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=40909"}],"version-history":[{"count":1,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/40909\/revisions"}],"predecessor-version":[{"id":40910,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/40909\/revisions\/40910"}],"wp:attachment":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/media?parent=40909"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/categories?post=40909"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/tags?post=40909"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}