/* 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":131273,"date":"2026-05-25T17:11:44","date_gmt":"2026-05-25T17:11:44","guid":{"rendered":"https:\/\/klecet.edu.in\/alumni\/?p=131273"},"modified":"2026-05-25T17:11:46","modified_gmt":"2026-05-25T17:11:46","slug":"100-percent-free-poker-ports-methods-secrets","status":"publish","type":"post","link":"http:\/\/klecet.edu.in\/alumni\/100-percent-free-poker-ports-methods-secrets\/","title":{"rendered":"100 percent free Poker Ports Methods & Secrets"},"content":{"rendered":"

Of numerous video poker online game employ brand new \u2018Jacks otherwise Finest\u2019 code just like the minimum hand which causes a payout. There was a selection of prominent electronic poker game which you can select from, including Jacks otherwise Most useful, Deuces Wild, or Joker\u2019s Nuts. When you find yourself video poker offers one of the reasonable house sides among gambling games, it has got highest difference, since the majority of the get back originates from unusual ideal give. Specific internet sites actually render totally free electronic poker online game which have comments toward though, mathematically speaking, you\u2019re making the correct flow. As we end the full travel through the betting arena of electronic poker and you will slots, i invite that feel many of these exciting game firsthand during the 888casino British.<\/p>\n

For Swift Casino<\/a> example, if you\u2019re fresh to online slots and are generally unacquainted have such variance and you may RTP, it’s also possible to become betting to your a game that’s also unstable for your finances. Certain wagers could offer a minimal house edge, so it’s a special most readily useful online game to own everyday gamblers. Including roulette, discover multiple contours to help you bet models so you can bet on, and fifty\/fifty \u2018solution line\u2019 and you can \u2018don\u2019t solution line\u2019 wagers. To tackle video poker at no cost is a fantastic means for newbies to rehearse its casino poker face. Free black-jack comes in several variations and has a reduced house edge of one games.<\/p>\n

Among the many key elements off teaching themselves to enjoy movies poker Jacks otherwise Finest are knowing when to continue otherwise throw away Large Notes. One of the most extremely important techniques for to experience video poker is actually you to 99.9% of the time when you have an absolute give, try to keep it. Below, you\u2019ll discover successful hand reviews and the ones with an excellent prospective to show towards winning hands once attracting. That with strategies for playing video poker and you may a straightforward approach within online video web based poker gambling enterprises in america, you will probably find yourself taking walks away with a few very unbelievable wins. Jacks or Most useful is actually a video clip web based poker online game where users don\u2019t play facing someone else or alive investors but rather an excellent server. But there more often than not remains a home border, and you may difference may also limit uniform wins.<\/p>\n

Of the in search of games having all the way down home sides, users can increase its probability of profits and you will probably enhance their complete earnings fundamentally. For the reason that the new winnings having profitable give are quicker favorable so you can professionals, making it harder so they can beat the brand new local casino\u2019s virtue. Concurrently, shell out dining tables having higher household sides, for instance the six\/5 alternative having a great 5% household edge, provide the gambling establishment which have an elevated analytical advantage over players. The house edge stands for the new mathematical virtue the newest local casino holds over users fundamentally. The best video poker online game are Jacks otherwise Most readily useful, where in fact the purpose is to find at the least a set of Jacks so you can winnings. Inside video poker, the chances away from gaining winning give rely on individuals activities particularly because the particular video game version and your approach.<\/p>\n

Just like the a simple form of entertainment, to try out 100 percent free video poker also may help to change their casino poker skills\u2014without having any limits. Any commission hinges on new effective likelihood of for every single round\u2019s last notes in the video poker video game. Such as for instance a bona-fide money game, getting started off with totally free use an internet electronic poker servers needs a bet number. Once you’ve discover a video clip poker server, just be sure to deposit and see the amount of potato chips we need to enjoy. Yet not, it’s always important to just remember that , gambling enterprises keeps a benefit (whether or not it is a tiny border in this case) and to enjoy sensibly constantly.<\/p>\n

However, he has got a thing that typical harbors don\u2019t \u2014 needed an element of skill. Initial, these people were labeled as poker ports because they played aside eg simple slot machines. Electronic poker combines the latest ease of ports together with cards dealings of web based poker, so it is good for participants who enjoy each other harbors and you can poker variations. If you’d like to take a look at current celebrity reports or find a genuine feedback regarding the Las Vegas’ top locations, I’m the one. If you\u2019re seeking to tackle video poker free of charge and you can testing out measures, envision starting an account on Harbors regarding Vegas. For folks who\u2019lso are not experiencing the video game any more and so are only throwing bets off with regard to they, that\u2019s a giant red-flag and an indicator to quit if you’re you\u2019lso are ahead.<\/p>\n

Video poker is one of the most well-known gambling games thank-you to the blend of strategy, low house border in lots of complete-pay variations, and you will obvious pay dining tables. No fluff, zero overhyped “secrets” – only the blogs they are found that indeed makes a difference. Even though the profitable card combos are identical for electronic poker and you will casino poker, the essential difference between her or him is based on the number of participants when you look at the the overall game.<\/p>\n

“The example of Bally’s flaming sexy sevens – I never ever gamble the game once the We have never knew it. Somehow We skipped the fresh new pub and you can 7 distinction entirely.”…” a whole lot more Due to their capability to mark appeal, slots tend to be typically the most popular form of game at a casino. Playing gambling enterprise slots are going to be a fun (and sometimes addicting) hobby. This short article might have been truth-seemed, making certain the precision of any cited affairs and you will guaranteeing the newest expert of its supplies.<\/p>\n

Out-of Jacks otherwise Greatest training to have very first-timers to help you complex electronic poker approach maps having experts, there\u2019s constantly far more knowing. It gambling establishment favourite blends the strategy away from antique poker into fast-moving adventure out-of slot machines, giving people an alternate combination of skills and you will chance. For those who\u2019ve ever thought about just how to enjoy video poker, you\u2019lso are not alone.<\/p>\n

If for example the ability try permitted look for even when you prefer to attempt to twice your profits. Just after pressing the max credits (or clicking choice you to definitely borrowing once or twice) the initial five cards hand was dealt and you can demonstrated into display screen. I like to not ever do that as We both rating \u201cout of connect\u201d and you will strike the \u201cDeal\/Draw\u201d option before We have safely spared this new notes I wish to help save. After we talked about ideas on how to enjoy electronic poker, you are today prepared to initiate real play.<\/p>\n

The game comes after important web based poker give scores having a pay attention to sets regarding Jacks (otherwise finest) just like the lowest winning hands. It\u2019s enjoyed in both physical gambling enterprises – Wiki Gambling enterprise an internet-based networks, providing a variety of fortune, means, and you may competitive commission rates. Such online game allow participants to train, build actions, and enjoy the contact with casino poker from anywhere. Electronic poker was popular one of casino partners, merging parts of slots on method off poker. But not, when to try out 100percent free, you simply cannot claim gambling establishment bonuses and should not earn real cash winnings. Joss is even a specialist when it comes to extracting what gambling establishment bonuses add well worth and you may where to find the newest advertisements you won’t want to miss.<\/p>\n

For those who\u2019re also unsure where to start, was one among them prominent totally free electronic poker game. It\u2019s best for anyone who enjoys quick rounds, lowest house boundary, and you can a little bit of decision-while making. As you need to have the skills out of understanding how to relax and play the dealt cards and construct an absolute hands, video poker work such as for example arbitrary slots. So you’re able to winnings, fool around with the above resources, and you may wear\u2019t disregard when planning on taking benefit of local casino bonuses. Your, for this reason, don\u2019t need to bother about effective and never having your profits.<\/p>\n

Such slot machines, randomness is additionally inside it. Are you ready to learn about method, an extremely important component from tips victory within video poker? If you do not discover or you try being unsure of, check the glossary from the guide to discover or perhaps to refresh their thoughts. To tackle the perfect approach well is the vital thing for how to earn from the video poker. You will observe what it is, the way it was setup, and more than importantly, you will observe a major type in ideas on how to victory at video poker.<\/p>\n

Greatest spend tables, such as for example 9\/six, operate in your own prefer whenever to tackle video poker. The new games function a commission towards the the full home regarding nine times new wager and you can a flush incentives try half a dozen moments brand new bet. Complete shell out machines, for example 9\/6 Jacks otherwise Finest online game, offer max RTP and relieve the house border the essential. So i can not stress adequate essential it\u2019s to evaluate the newest spend desk. Here\u2019s a glance at a 9\/six Jacks otherwise Most useful video poker video game. If you find yourself into a losing streak, don\u2019t boost your bets to try to get well losses.<\/p>\n","protected":false},"excerpt":{"rendered":"

Of numerous video poker online game employ brand new \u2018Jacks otherwise Finest\u2019 code just like the minimum hand which causes a payout. There was a selection of prominent electronic poker game which you can select from, including Jacks otherwise Most useful, Deuces Wild, or Joker\u2019s Nuts. When you find yourself\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-131273","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/131273","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=131273"}],"version-history":[{"count":1,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/131273\/revisions"}],"predecessor-version":[{"id":131274,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/131273\/revisions\/131274"}],"wp:attachment":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/media?parent=131273"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/categories?post=131273"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/tags?post=131273"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}