/* 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":131305,"date":"2026-05-25T17:13:31","date_gmt":"2026-05-25T17:13:31","guid":{"rendered":"https:\/\/klecet.edu.in\/alumni\/?p=131305"},"modified":"2026-05-25T17:13:32","modified_gmt":"2026-05-25T17:13:32","slug":"video-poker-tips-for-participants-insight-to-change-their-game","status":"publish","type":"post","link":"http:\/\/klecet.edu.in\/alumni\/video-poker-tips-for-participants-insight-to-change-their-game\/","title":{"rendered":"Video poker Tips for Participants Insight To change Their Game"},"content":{"rendered":"

They can guide your own electronic poker method into holding otherwise discarding notes. Well-known electronic poker game variations include Deuces Insane, Jacks otherwise Ideal, Extra Poker, and you may Aces and you will Eights. Of several variants could possibly offer the lowest home line when used max approach \u2014 but productivity always trust the newest pay desk and decisions you make. This article shows you exactly how electronic poker really works, just how winning hand is actually molded, and how pay dining tables and you may approach behavior apply to your enough time-label productivity. It combines elements of casino poker and harbors, where your choices \u2014 besides chance \u2014 dictate a lot of time-label overall performance, especially if you decide to play electronic poker online.<\/p>\n

Right here, we shall take you step-by-step through video poker concepts, secret regulations, means information, and differences between common alternatives. Playing electronic poker free-of-charge is a fantastic means to fix sample aside the latest actions, particularly because a beginner, and public casinos is primed to provide some good electronic poker online game. Nonetheless, these are typically checked and you can affirmed because of the we of professionals to make certain they might be good place to play video poker. Prior to delving for the details of Deuces Wild Casino poker, it is imperative to highlight the the return-to-athlete (RTP) rate, among large certainly electronic poker online game. Such video poker video game are very popular they will be readily available at the bulk from web based casinos your gamble at. Let’s easily race compliment of the best electronic poker online game readily available one to, as the a beginner, you need to make sure to experiment.<\/p>\n

For example, a vintage video game regarding Jacks otherwise Greatest includes a property edge of merely 0.46% and you will a return speed (RTP) out of 99.54%, that’s a whole lot more nice than simply online game like baccarat otherwise black-jack. Each video poker variant comes with a different gang of rules, a unique commission, and you can a special electronic poker domestic boundary. One to important thing to see is the fact electronic poker try good name mutual because of the a complete group of games, and there is multiple alternatives out-of video poker, like Jacks or Most useful, Aces and you may Confronts, Deuces Crazy, and many more. Electronic poker game mix the fresh new globes out of harbors and you may cards, letting you gamble easy web based poker variations up against the pc, which have fixed earnings given for various variety of web based poker hands. Wager one dollars and select right up $one hundred worth of rewards and you will incentives to truly get your electronic poker bankroll started. A whole lot more rarely, specific have taken advantageous asset of an insect from the video poker machine’s system to earn highest winnings.<\/p>\n

Need certainly to can play video poker and increase your Ruby Fortune<\/a> probability of effective? While the domestic line are lower during these video game, you will expect you’ll rating quite normal wins because you gamble. This is exactly an easy and easy version of casino game that was nearer to slots in the manner they plays than simply it is to try to table online game. In the alternatives away from joker casino poker, this card acts as an untamed that helps one to complete profitable give.<\/p>\n

While the give you\u2019re seeking to get could be the same, there can be quite reasonable variations from just one video poker video game to a different. Such as for instance, if you are searching at no cost video poker games regarding a particular video game designer, tick the relevant package within the ‘Game Provider’ filter. Merely browse to the top of the webpage and commence probably brand new readily available video poker video game. If you don’t have to wager one a real income, you can gamble free online video poker games.<\/p>\n

Its nickel and you can quarter video poker hosts are cited as the including strong. Whether or not theoretically a casino poker table game, many free video poker game imitate the principles. By understanding the basics, consulting paytables, and you may and work out optimum conclusion, you can enjoy and you may probably flourish in that it fascinating casino video game. Most readily useful full shell out electronic poker games features RTPs out-of 99% or more that have prime enjoy, causing them to among the best choices on casino. Because of the focusing on how to try out electronic poker the proper way and choosing the best program, you change an easy game with the an art-situated, satisfying experience. A full shell out electronic poker host can force your RTP when you look at the video poker significantly more than 99% whenever paired with best approach, while you are a short pay adaptation can get rid of they into middle-90s \u2014 a positive change through the years.<\/p>\n

These networks even accommodate customizable connects to possess benefits and private choice. But don\u2019t ignore one online gamble function quicker rate and you may multi-hands selection. When you find yourself for individuals who strike a certain amount of payouts, you might label some time exit the game in what your showed up to have. Of numerous it is strongly suggested which have three or four times the maximum amount that would be obtained towards the online game you\u2019re to relax and play. You might not should maximum-bet if you wear\u2019t have enough finance for it along side long run. Playing within your individual funds is often trick.<\/p>\n

Within the Nj-new jersey, Michigan, Pennsylvania, Western Virginia, and you can Delaware, you\u2019ll pick electronic poker games offered at just about all on line and you will traditional casinos. Whatever you\u2019d expect you’ll pick is that people gambling establishment welcome bonuses, when it comes to zero-deposit and deposit meets incentives, are available to fool around with having video poker online game. Let\u2019s cook something as a result of an important listing for improving your own pleasure and your bankroll while playing electronic poker. Use all of our video poker approach chart as a simple technique for Jacks otherwise Top therefore\u2019ll feel to play near to optimally. A lot of electronic poker computers just have a good 0.5% to at least one.5% house edge, placing her or him the best wagers throughout the local casino. The newest payouts can vary depending on the specific brand of video clips poker video game you\u2019re to tackle, in the event really video poker servers promote similar chances formations.<\/p>\n

Whether it is tournaments or even the kind of online game to try out, there clearly was several reasons why you should play a real income electronic poker online game. For new players, totally free electronic poker video game are useful to possess discovering the guidelines, strengthening actions, and you can increasing believe. Several electronic poker online game occur, and even though some varieties be a little more preferred than others, web based casinos usually no less than feature the most popular products. Having bigger jackpots and a broader set of video poker game available on the net, so much more bettors are now actually to play these casino games on their notebooks or smart phones.<\/p>\n

Certain video poker video game, eg complete-pay Jacks otherwise Better, could possibly offer over 99% RTP, offering wise people a bona fide boundary throughout the years. Today it\u2019s your move to dive inside the and try from top electronic poker video game on the internet. I always play at best gambling enterprises getting video poker game from the suggesting solely those which can be Jackpot Authoritative. If your\u2019re chasing after large gains or perhaps like a crazy card twist, we\u2019lso are here so you can discover finest online video web based poker game.<\/p>\n

The target is to build comparisons simple and easy according to genuine gameplay standards. In search of compatible options is not difficult with systems to prepare. These differences connect with just how show come and just how usually gains exists. Accurately to try out this new statistically lead method is an essential component out-of tips profit on electronic poker. There are keys to winning at the video poker.<\/p>\n

In the Deuces Insane, any deuce (2) will act as an untamed credit, that can option to other credit which will make a fantastic hands. That\u2019s why electronic poker approach boils down to becoming choosy maybe not just throughout the cards you hold, but in the game, you decide to play. Some thing you quickly discover whenever to play video poker is the fact the fresh new absolute brand of games should be daunting. Sure, both ability the same very first give score (you\u2019ll be hoping for this regal clean), nevertheless the similarities hold on there. \u201d\u2014the answer are a beneficial resounding yes, in regard to video poker strategy.<\/p>\n

To find truth be told there, you\u2019ll definitely need to find out casino poker hand scores, therefore we\u2019ll establish all of them with part of the casino poker types in mind. All video poker machine possess other commission prices, so you normally blend your knowledge away from game regulations which have commission prices while making a finest method. In Jacks or Most readily useful, the target is to reach minimum a set of Jacks, and therefore qualifies your to possess a fantastic give, so according to the pulled notes, you could potentially propose to continue otherwise dispose of several. And here electronic poker games variations come into play since the this will depend towards online game variation.<\/p>\n

Whether your\u2019re a complete pupil or an experienced user, there\u2019s constantly even more to know about beating the new video poker machine! Here you’ll find out everything you need to improve all aspects regarding your video poker online game. Video poker is actually a well-known Gambling establishment video game that combines components of each other slots and you may traditional web based poker. It has got more than eight hundred video game in addition to harbors, dining table games, and live dealer possibilities, and provides generous bonuses particularly a pleasant bonus doing $step 3,000 and you will a respect rewards program. See the top get a hold of to have casinos on the internet, offering reading user reviews, reviews, and private incentives.<\/p>\n","protected":false},"excerpt":{"rendered":"

They can guide your own electronic poker method into holding otherwise discarding notes. Well-known electronic poker game variations include Deuces Insane, Jacks otherwise Ideal, Extra Poker, and you may Aces and you will Eights. Of several variants could possibly offer the lowest home line when used max approach \u2014 but\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-131305","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/131305","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=131305"}],"version-history":[{"count":1,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/131305\/revisions"}],"predecessor-version":[{"id":131306,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/131305\/revisions\/131306"}],"wp:attachment":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/media?parent=131305"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/categories?post=131305"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/tags?post=131305"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}