/* 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":12470,"date":"2026-05-07T15:29:39","date_gmt":"2026-05-07T15:29:39","guid":{"rendered":"https:\/\/klecet.edu.in\/alumni\/?p=12470"},"modified":"2026-05-07T15:29:40","modified_gmt":"2026-05-07T15:29:40","slug":"10-greatest-big-style-gambling-casinos-ten-best-gambling-enterprises-uk","status":"publish","type":"post","link":"http:\/\/klecet.edu.in\/alumni\/10-greatest-big-style-gambling-casinos-ten-best-gambling-enterprises-uk\/","title":{"rendered":"10 Greatest Big style Gambling Casinos-ten Best Gambling enterprises Uk"},"content":{"rendered":"

Large Crappy Bison and you can Queen out of Cats are only concerned with insane characteristics, if you find yourself Much more Turkey, Rocky Reactors, and you will Meats Lightning Megaways display much more funny letters. Their the newest create into the 2024 include Panda Money, Fireworks Megaways, Trigger happy, Fizzy Pennyslot, Issues High voltage dos, Wonderful Goose Megaways, and you may Boo. One real cash bet is also enable you to hit the jackpot, which is the beauty of eg game, however should know less RTP due to the fresh sum compared to that pool regarding each wager. The greater number of real money wagers players lay, the larger brand new progressive pond of each jackpot height. Progressive jackpots out-of Big style Gambling continue a remarkable background off Small, Midi, Big, and you can Mega honors.<\/p>\n

I highly recommend enabling one or two-foundation verification for an added covering off cover up against unauthorized account availableness. When deciding on a giant Time Gambling gambling enterprise, it\u2019s important to prioritise platforms offering most readily useful-level security measures. The attention so you’re able to outline about image, along with entertaining musical effects, produces a keen immersive playing experience. This means you may enjoy most useful BTG ports including Bonanza otherwise Extra Chilli away from home, with seamless effectiveness. If or not you\u2019re also playing with an ios or Android os equipment, BTG game work with efficiently instead decreasing towards the image or gameplay high quality. Such high-volatility games can pay out huge gains due to the Megaways auto mechanics.<\/p>\n

Actually, it\u2019s one of several simply BTG harbors on this record one to doesn\u2019t make use of the Megaways element and isn\u2019t overloaded having paylines. It\u2019s believe it or not nostalgic (offered I didn\u2019t survive through the fresh new 1950s and possess not ever been into Us) and it also\u2019s plus easy. When you yourself have see my reviews on the Microgaming slot machines and you may actually Quickspin gambling games, you will be aware that I’ve a flaccid location for Chain Effect has actually. First of all, it\u2019s a good Megaways slot, and thus it’s countless you’ll paylines. It\u2019s perhaps not just as easy or since the natural to show they into a casino game once the something such as Bargain or no Deal, however it\u2019s still possible.<\/p>\n

To assist finance our really works we may secure an advice payment for folks who perform a free account thru our very own webpages. Once you think about the newest and greatest online slots games, local casino and bingo games business Big-time Gambling do not, up to now, have a similar types of character given that NetEnt, Dragonfish otherwise Microgaming. These casinos on the internet offer you the ability to play a real income gambling games otherwise use behavior currency. The good thing, though, is that it\u2019s a little list\u2014merely three-out of five harbors score an enthusiastic RTP off smaller than simply 96%. Additionally you notice that most Big style Betting ports (red dots) get a lot better than the average of all the online slots (the fresh new green line).<\/p>\n

The new black graphic, atmospheric musical, and you can water animated graphics combine in order to make an immersive gaming sense you to feels as though stepping into a medieval headache movie with every spin. This new six\u00d7cuatro grid with cuatro,096 a means to winnings will bring flexibility, when you are flowing reactions make sure that victories rarely become remote otherwise fixed. Featuring its unique auto mechanics and you may striking design, Lil Demon now offers an exciting and you can unique betting experience.<\/p>\n

We\u2019re also right here so you can direct you to the best Big time Playing gambling enterprises with obtained a stellar get from your benefits, to only focus on the enjoyable part. You\u2019ll get a hold of numerous Big style Gambling gambling enterprises to pick from, but that it doesn\u2019t mean you really need to opt for the first site your run across. Spins must be used in advance of using deposited money. Max choice is 10% (min \u00a30.10) of your totally free twist winnings amount or \u00a35 (reduced number is applicable). Added bonus spread over initially cuatro deposits. Maximum bet was ten% (min \u00a30.10) of your Extra amount or \u00a35 (low matter enforce).Incentive have to be reported before using deposited financing.<\/p>\n

Just like the a reliable brand, it is absolute to possess BTG to add cutting-border technological alternatives in their work. Like many almost every other application organization regarding gambling on line business, Big style Gaming’s primary goal is doing high-high quality video slots. Those types of are the Malta Quick Win bonus zonder storting<\/a> Playing Power (MGA), the fresh new Gibraltar Regulating Expert, additionally the British Playing Payment (UKGC). Keep reading for additional information on the video game designer as well as the ideal other sites where you are able to gamble the online game. Should you want to play online casino games from Big-time Gaming the real deal money, you should do very at the a casino providing online game from the fresh new seller. Very gambling enterprises succeed people to use the new demonstration means just before deciding the real deal currency enjoy.<\/p>\n

As previously mentioned just before, BTG produces harbors that have huge win possible, leading them to good for real cash gamble. This was shown if this arrived a few victories during the Meister Honors into the 2017. First utilized in Queen of Kitties, where bettors could select from Lion and you may Puma Spins. Big time Gambling possess high quality slot game, unbelievable game play, fascinating habits, detailed elements, and you can three-dimensional animations.<\/p>\n

Obviously, would be to BTG give dining table video game subsequently, I will be sure to inform my members towards the brand new opportunities considering. Thus you must favor some other game vendor if the you want to enjoy roulette and other classics. For example launches driven by medieval minutes, games, desserts, certain cultures, outer space, and a lot more. You can look at such games for free here at Las vegas Pro, or signup at among my personal BTG gambling enterprise advice so you can play for real money. A few of the most attractive of them were Issues High voltage, Wheel of Luck Megaways, and extra Chilli Megaways.<\/p>\n

This lady information assist participants prefer credible online casinos running on reputable software team for smooth gameplay. The big Date Betting ports collection might not be inflatable (yet) it\u2019s adequate we think it is hard to get a hold of our favourites from what is on give. They truly are a varied selection of themes, from the deepness of jungle towards the adventure of sporting events mountain. High variance slots had been experience a good amount of notice however for huge wins, players had to go to the fresh jackpot sections within online casinos. Through to the knowledge position Bonanza, max victories of x20,000 or more for the slots that have been perhaps not jackpots was indeed about unusual.<\/p>\n

However, it\u2019s nevertheless a great way to is the a favourite gambling games free of charge, no chain connected. As you have suspected, there\u2019s you don’t need to put any of your individual money off with this bonus, nonetheless it can come that have much large betting requirements than other incentives. They will certainly typically incorporate betting criteria, not, so make sure you take a look at fine print before you could start to relax and play. 100 percent free spins will be the primary incentive for individuals who\u2019re also trying to play from the a huge Go out Playing casino since the, since their term implies, he or she is specifically made for the slots.<\/p>\n

From the Casinosspot.com, we feel from inside the visibility with this readers. The basic-group game bring ideal ranks on most useful online casinos ratings because a number of them bring payouts 50,000x a risk. His articles is largely a closer look from the game play featuring \u2014 he reveals what a position lesson actually is like, and therefore\u2019s enjoyable to watch. Bill possess experience with the program side of casinos on the internet, that provides your a-deep knowledge of the merchandise behind the gambling feel.<\/p>\n

Their very better-recognized on the web table games become Car Roulette and you can Vehicles Black-jack. When you play at Big-time Betting casinos, you are destined to find some of your own preferred online slots games in their lobbies. Today, after all the indexed Big-time Playing gambling enterprises you will find many fun and inspired Megaways ports! BTG is known for lots of the online casino games and also you have probably currently tried out a number of the online game. The group trailing BTG provides an extraordinary track record whether it relates to creativity from inside the online gambling which have ages of experience.<\/p>\n

Every one comes with all of our recommendation of the greatest gambling enterprises to tackle from the, the full list of web based casinos, and on which per application has the benefit of. Discuss extra profile, Unbelievable Hit victories around 3,333x & most readily useful gambling enterprises playing the video game They\u2019s about what BTG do in it\u2019s each one of their online game and all sorts of their aspects. And if you are trying to select a number of new BTG gambling games to tackle, check all of our advanced slot look.<\/p>\n","protected":false},"excerpt":{"rendered":"

Large Crappy Bison and you can Queen out of Cats are only concerned with insane characteristics, if you find yourself Much more Turkey, Rocky Reactors, and you will Meats Lightning Megaways display much more funny letters. Their the newest create into the 2024 include Panda Money, Fireworks Megaways, Trigger happy,\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-12470","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/12470","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=12470"}],"version-history":[{"count":1,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/12470\/revisions"}],"predecessor-version":[{"id":12471,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/12470\/revisions\/12471"}],"wp:attachment":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/media?parent=12470"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/categories?post=12470"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/tags?post=12470"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}