/* 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":131957,"date":"2026-05-25T18:19:09","date_gmt":"2026-05-25T18:19:09","guid":{"rendered":"https:\/\/klecet.edu.in\/alumni\/?p=131957"},"modified":"2026-05-25T18:19:10","modified_gmt":"2026-05-25T18:19:10","slug":"greatest-shell-out-by-mobile-gambling-enterprises-2026-deposit-of-the-mobile-bill","status":"publish","type":"post","link":"http:\/\/klecet.edu.in\/alumni\/greatest-shell-out-by-mobile-gambling-enterprises-2026-deposit-of-the-mobile-bill\/","title":{"rendered":"Greatest Shell out-by-mobile Gambling enterprises 2026 Deposit of the Mobile Bill"},"content":{"rendered":"

Midnite Local casino supporting shell out by phone costs places around the biggest Uk mobile systems, making it possible for quick places as opposed to revealing card details. They’re shell out of the mobile harbors, alive broker dining tables, and you will dining table online game from organization such as Practical Gamble, Evolution, and you may NetEnt. Specific providers, somewhat shell out by cell phone casinos not on Gamstop, always promote richer incentives. If you are shell out of the cellular telephone gambling enterprises wear\u2019t promote exclusive incentives because of it percentage strategy, most of the simple invited incentives and you can offers appear. Biometric authentication confirms transactions toward Android devices, so it is a secure choice that have highest restrictions than spend by the mobile bill tips eg Boku and you will PayForIt.<\/p>\n

Contrast the major casinos on the internet one accept Spend from the Cell phone so you’re able to discover of these providing advantages including instant fee handling, zero costs, and you may a reduced \u00a3ten minimum deposit. We provide top quality adverts features because of the offering just winbet<\/a> oriented labels away from registered workers in our ratings. When transferring in the Spend by Phone Bill gambling enterprises in britain, there are deposit limitation constraints you really need to thought. The preferred Shell out Of the Cellular phone tips include Payforit, Fonix, Boku and Siru Mobile. Shell out Because of the Cell phone casino web sites is actually cellular casinos that enable the consumers so you’re able to deposit thru its mobile expenses otherwise prepaid harmony.<\/p>\n

Some situations become Piggy Riches Megaways, 9 Pots regarding Gold Megaways, and Gonzo\u2019s Journey Megaways. Find the spend by the cellular deposit solution and type in the deposit number and number of the device you wish to help make the put away from. A pay from the mobile gambling establishment is an online casino one even offers a pay from the cellular telephone put option. Very, for many who\u2019re among the many people looking for a Virgin pay from the cellular gambling enterprise or an EE spend because of the mobile gambling enterprise, then you\u2019re also regarding right place because i deal with these while others. Loads of better cellular team allow the pay by mobile selection for to make deposits to the website. You may have good pending detachment getting \u00a3, desire to fool around with these funds in the place of depositing?<\/p>\n

No-put bonuses are free to claim in the same manner which you needn’t put the money first off to tackle, however they are constantly linked with conditions and terms. From the consolidating such offers that have commitment schemes and VIP programs, casinos endeavor to change basic-go out individuals toward a lot of time-title, placing members inside an increasingly aggressive sector.\u200b Web based casinos have fun with no-deposit bonuses while the a powerful buy device to draw the brand new users and allow them to attempt this site\u2019s online game and features with minimal chance. The two most common style of no-deposit bonuses are added bonus borrowing (or 100 percent free extra cash) you need to use into the a selection of games, and you will free spins which might be closed to particular harbors. No-deposit incentives really works by being credited for you personally once you register and you may, occasionally, opt for the or enter into a beneficial promo code.<\/p>\n

While in the membership, United kingdom online casinos assemble regulators-awarded ID details for example title, big date out-of beginning, address, and contact number. When combined with deposit limits, truth monitors, and you will federal self-different solutions, the united kingdom\u2019s gambling industry positions among the many trusted globally. In the event that every single day spending currently has reached the fresh new \u00a331 endurance, telecoms cancel the latest put. When players like mobile battery charging, your order request paths through system providers to have confirmation.<\/p>\n

You are brought to a unique display screen for the payment to confirm the amount you wish to put; you might have to enter your own cell phone number, and then you\u2019ll score a text that has facts where you can confirm your put. Go into your data and also the number your\u2019d desire to put, prove their deposit, and your financing is ready and you will available from inside the your account! For people who\u2019re also choosing the best shell out-by-cellular phone gambling enterprises, the best places to look is good right here on the webpages. If you feel pay of the mobile local casino internet sites try correct to you, you\u2019ll be delighted because of the number of choice available. When you produces the dumps via your phone, the latest dumps aren’t billed into cellular phone statement otherwise subtracted out of your shell out-as-you-go borrowing right away. If you\u2019re new to spending during your mobile phone, rest assured that this is an easy and you can effective way to help you import finance on the web to your gambling enterprise account.<\/p>\n

For every single solution is sold with information regarding operating time, lowest put, you’ll charges, and head virtue. A wages from the mobile phone casino lets users put funds using just the mobile matter\u2014no need to have credit cards otherwise elizabeth-wallets. In the parts less than, you\u2019ll see everything you need to discover how these expertise work, making one another deposits and you may withdrawals effortless it doesn’t matter the mobile lifestyle. If or not your\u2019re also knowledgeable otherwise a new comer to gambling on line, knowledge shell out by mobile bill cellular gambling establishment selection is vital having safer, brief, and you may discerning deals. Exploring the field of cellular casino pay of the cellular phone statement enjoys reshaped just how people enjoy on the internet gambling.<\/p>\n

The online Gambling establishment accepts spend from the cellular phone statement dumps of \u00a3ten. We are quick to exchange underperforming shell out by the cellular telephone expenses internet which have the new casinos you to fulfill all of our requirements. If any of those slip in top quality \u2013 whether it’s commission price, incentive words, otherwise pro feel \u2013 we would not think twice to take them off the list.<\/p>\n

Gambling establishment withdrawals having shell out of the mobile was more state-of-the-art than simply places. At the in initial deposit by the phone casino, their deposit are put in your own mobile phone statement, and you enjoy due to the fact typical utilizing your equilibrium. These could end up being totally free revolves otherwise incentive funds and also you never need certainly to and then make a repayment very first to get them \u2013 it is a sensible way to was a gambling establishment. In most cases, you\u2019ll end up being granted the brand new \u201ccash\u201d given that incentive financing so you’re able to keep to play. The way it works is simple.<\/p>\n

I look after experience of web based casinos and you can gambling internet to incorporate the brand new information about bonuses, betting legislation, banking and much more. That it sense makes him to your a just about all-around professional when you look at the web based casinos. There are no real independent harbors getting pay because of the mobile and you may almost every other banking tips. Pay by the cell phone slots reference on the internet slot video game that will be offered at shell out of the cellular phone local casino web sites. The brand new fees are put into your prepaid service harmony otherwise next cell phone costs. Shell out from the mobile dumps are generally instant from the moment the brand new percentage try verified.<\/p>\n

Boku is a leading separate mobile fee seller, catering on needs out-of web based casinos in the uk. These types of services is actually widely approved by the Uk cellular online casinos, therefore it is easy for users to deposit financing due to their mobile cell phone statement. Multiple shell out because of the mobile phone statement attributes come, with Boku, Payforit, and you will Zimpler being among the most popular. While this commission method is fundamentally 100 percent free, some mobile casinos shell out a running fee. Instead of playing with a great debit cards otherwise savings account, you could potentially fees the total amount on portable costs otherwise subtract it out of your prepaid service equilibrium.<\/p>\n

The greatest benefit to having fun with a pay by mobile gambling enterprise are that one can rapidly funds your casino membership right from their portable. Assure you probably know how the fresh shell out by cellular percentage means works closely with for every on-line casino real money webpages before signing up to gamble your favourite online game. Even though shell out by the mobile casino sites allow you to build a good deposit via your cellular phone costs, it\u2019s false that one may withdraw using the same method.<\/p>\n

See web based casinos you to keep permits awarded of the UKGC or other reputable government, and discover you to definitely T&Cs are easy to to obtain and study. When you find yourself uncommon, certain \u00a3step one deposit local casino internet sites were live tables with low stakes. These online casino is appropriate to have quick costs because they enables you to twist real cash ports just after depositing simply \u00a31. This type of advertising return a percentage of the losings since the incentive money, providing you with a supplementary possibility to gamble without needing to greatest up again right away.<\/p>\n

Most other best business become Microgaming, Playtech and you can NetEnt, which have alive video game out of Advancement. Finance struck your bag whenever you\u2019ve confirmed the transaction because of the Sms. The web based Gambling establishment enables you to charge places away from \u00a3ten to \u00a340 to any or all United kingdom cellular telephone networks. However the quality is there, as most of titles are offered because of the Practical Enjoy.<\/p>\n","protected":false},"excerpt":{"rendered":"

Midnite Local casino supporting shell out by phone costs places around the biggest Uk mobile systems, making it possible for quick places as opposed to revealing card details. They’re shell out of the mobile harbors, alive broker dining tables, and you will dining table online game from organization such as\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-131957","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/131957","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=131957"}],"version-history":[{"count":1,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/131957\/revisions"}],"predecessor-version":[{"id":131958,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/131957\/revisions\/131958"}],"wp:attachment":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/media?parent=131957"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/categories?post=131957"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/tags?post=131957"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}