/* 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":132027,"date":"2026-05-25T18:33:57","date_gmt":"2026-05-25T18:33:57","guid":{"rendered":"https:\/\/klecet.edu.in\/alumni\/?p=132027"},"modified":"2026-05-25T18:33:58","modified_gmt":"2026-05-25T18:33:58","slug":"alice-in-wonderland-of-the-bf-online-game-trial-gamble-slot-game-100-free","status":"publish","type":"post","link":"http:\/\/klecet.edu.in\/alumni\/alice-in-wonderland-of-the-bf-online-game-trial-gamble-slot-game-100-free\/","title":{"rendered":"Alice in wonderland of the BF Online game Trial Gamble Slot Game 100% Free"},"content":{"rendered":"

It\u2019s good 5\u00d76 reel position which provides opportunities to belongings stacked signs and you may promote winnings. Including, good multiplier value 1x\u20134x is put on any successful totally free twist. Alternatively, you can activate the minute-victory video game having step three+ Cheshire Pet signs in just about any reputation. They whizzes along the screen, incorporating 3x multipliers to the integration it helps to do.<\/p>\n

Indeed, do not visit to play these two large step video harbors, carry out consider to relax and play some new slot game also, and those that Personally i think are well worth tracing off and to play will be Shogun of energy slot and you can both Dry or Live dos and Contract or no Package position online game as well. I understand that you will in the future see every there clearly was in order to the Alice-in-wonderland slot as soon as you have got starred they you’ll then most likely embark on brand new search for various other comparable slots, of course, if one to day arrives make sure that you allow the Cleopatra and you may Safeguards of the Crazy slots some gamble day online. When the at any time you\u2019re being unsure of about so it or various other slot machine game takes on otherwise pays, up coming glance at the spend desk as well as the affixed assist records as by doing so you will see a complete assessment of the position has been designed as well as how it works and operates too. All-licensed casinos will definitely upload the new commission rates that each of their slot online game are ready to go back so you can users across the long lasting, so savvy players are often probably search one to suggestions up whenever to relax and play for real currency to help them to find the greatest expenses slot machines.<\/p>\n

On the other hand, it is possible to prefer to choice your earnings regarding special risk-bullet for an opportunity to proliferate her or him. You are able to brand new Lines option to select the precise count from traces you would like to trigger. One which just initiate your travel in the Wonderland, you\u2019ll must build particular games parameters. The cornerstone toward position\u2019s construction are Tim Burton\u2019s film version of your own eternal vintage.<\/p>\n

Instead of traditional payline ports, which title benefits members for landing the same symbols to your one condition towards surrounding reels, starting from this new leftmost reel. The overall game is set for the an enthusiastic enchanted, radiant forest where signs range from the Mad Hatter, the fresh new Light Rabbit, together with Cheshire Pet. Discuss a giant gang of demonstration slots passionate by the alice during the wonderland\u2014the playable instead of registration or deposit.<\/p>\n

The amount of free spins you can get in element is dependent on just how many scatter symbols you strike to help you residential property they. This can be an excellent element given that from time to time your\u2019ll pick-up an earn in the place of in fact knowing since you was centering on the greater signs as opposed to the to try out cards. An element of the element of slot is the 100 percent free spins bullet that’s activated by the teapot spread out icon. It slot is a comic strip deal with the latest Alice tale, in a few ways for instance the Disney cartoon manufactured in the first 1950\u2019s in the event in the event that anything it position enjoys things out of a deep getting, the newest icons maintaining show that the whole slot is decided at night.<\/p>\n

The fresh new tech storage or accessibility is required to manage member users to send advertising, or perhaps to track the user to the a web page or across the multiple websites for similar marketing intentions. Save my title, email address, and you will web site within this web browser for the next date We remark. Step to the an effective whimsical excitement having \u00abAlice in wonderland\u00bb from the BF Online game. This new image become a whole lot more shiny, and it also adds loaded wilds and you will novel respin technicians, and not to refer an awesome money-look for jackpot function you to shakes within the rate.<\/p>\n

These types of symbols\u2014probably a magical key or the popular \u201cDrink Myself\u201d bottle\u2014can also be stimulate brand new 100 percent free spins element otherwise initiate find-me personally build added vickers casino<\/a> bonus game. Both, wilds feature their multipliers or is build to fund whole reels throughout the particular incentive cycles, greatly increasing commission ventures. Maximum profit per spin normally come to a huge number of minutes your own bet, particularly in free spins otherwise during added bonus rounds stacked with wilds and you will multipliers. To activate the newest totally free game round your\u2019ll need certainly to property new teapot spread out symbol at the very least step three times all over all reels of your own position.<\/p>\n

Alice ‘s the large paying symbol, satisfying ten,100 coins for searching five times towards the an energetic payline. About three or maybe more White Bunny scatters activate the Wallet Check out bonus round, awarding free spins according to the big date found towards Bunny\u2019s watch. Every prizes is actually increased by the wager, giving a potential profits multiplier all the way to 22X.<\/p>\n

The new Cheshire Pet often re-double your payouts of the a dozen, 50, otherwise five-hundred minutes, together with twins \u2013 by 10, 30, or 3 hundred. Drop your feet on the depths of almost every other Wizard Video game slots towards the our website to keep the great minutes rolling. Yet not, you can’t retrigger the 3 more free spins more cuatro straight minutes. Predating Escapades Beyond Wonderland simply by two months, Evolution’s In love The years have an identical settings, this time having an excellent circus fairground theme, that includes ringmaster server. Walterspins is a bit for example Wonderspins, but now Walter the fresh Caterpillar punches green bubbles to add even more multipliers so you can controls icons at random getting big winnings possible.<\/p>\n

Throughout the very first inclusion into the lingering gameplay, there\u2019s rich detail in almost any direction and you will animations that produce which a whole lot more than just a fixed screen. The beds base games feels more erratic, and the potential for beast victories is significantly better (at the very least for individuals who\u2019re a fan of exposure). The fresh wheel extra possibly took sometime going to, nevertheless adventure ramped upwards whether it ultimately performed. Possibly you\u2019ll end up in free revolves early and sometimes it feels as though forever, however, one to\u2019s the nature away from typical volatility harbors.<\/p>\n

The fresh new motif arises from this new magical realm of Wonderland, where players should expect an excellent rollercoaster off emotions, magical symbols, and you may enjoyable added bonus rounds. The fresh Alice-in-wonderland slot is a great games that transfers people towards the whimsical realm of Lewis Carroll\u2019s precious characters. The specific amount of revolves is dependent upon enough time shown for the Light Rabbits wallet check out, it may vary every time you gamble. The rabbit hole symbol causes the advantage round therefore merely appears to the center reel, that have a picture image of Alice tumbling on the hole in order to gather awards. Considering most of the letters of your own antique story book, you’re surprised this new graphics for the reels, regarding background along with the main benefit bullet and you will the totally free spin screen.<\/p>\n

Regarding the basic added bonus We wound up with 5 bucks and regarding second which have 15 cash after i starred them a dozen moments. We starred very first a bonus off $twenty five then a plus regarding $5 and you may one another moments We fulfilled the new betting requirements. For those who are lucky just enough, you could make currency growth which are often countless moments the legitimate stake contribution. The newest insane signs substitute for anyone else, helping manage a great deal more winning combos, given that spread out symbols unlock extra possess particularly 100 percent free revolves. Get ready to join Alice for the a unique globe, ingesting teas that have rabbits, and you will probably profitable pleasing honors. For instance the Cheshire pet, you\u2019ll you would like it symbol to seem around three or higher minutes all over the fresh reels to start this new 100 percent free spins.<\/p>\n

That implies consistent production over the years. Be looking to own scatter icons too. Effective combinations result in profits according to the paytable. It unique slot is actually an exciting gambling enterprise host. Step on the an excellent unique world where enjoyable and cash collide. The current modern jackpot number is demonstrated ahead cardio of your game display.<\/p>\n

And no tips or additional has actually, you\u2019ll haven’t any difficult time learning the way the slot functions. Prior to heading down the bunny hole which have real cash, you can buy a sense of exactly what Alice-in-wonderland position offers of the to experience the video game first in demonstration means. Present players may also get totally free revolves extra now offers by way of an excellent deposit added bonus, EnergySpins benefits, and other extra also offers. On ft game, singular Insane can appear in virtually any spin. For instance the amazing facts, lead on the bunny opening as you mention an awesome homes in which revolves consider silver. Having a keen RTP out of 96.06%, there\u2019s a significant threat of successful a payout using this amazing on the internet position.<\/p>\n","protected":false},"excerpt":{"rendered":"

It\u2019s good 5\u00d76 reel position which provides opportunities to belongings stacked signs and you may promote winnings. Including, good multiplier value 1x\u20134x is put on any successful totally free twist. Alternatively, you can activate the minute-victory video game having step three+ Cheshire Pet signs in just about any reputation. They\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-132027","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/132027","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=132027"}],"version-history":[{"count":1,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/132027\/revisions"}],"predecessor-version":[{"id":132028,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/132027\/revisions\/132028"}],"wp:attachment":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/media?parent=132027"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/categories?post=132027"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/tags?post=132027"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}