/* 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":96024,"date":"2026-05-24T05:04:05","date_gmt":"2026-05-24T05:04:05","guid":{"rendered":"https:\/\/klecet.edu.in\/alumni\/?p=96024"},"modified":"2026-05-24T05:04:07","modified_gmt":"2026-05-24T05:04:07","slug":"most-useful-playtech-gambling-enterprises-2026-contrast-professional-ranked-internet","status":"publish","type":"post","link":"http:\/\/klecet.edu.in\/alumni\/most-useful-playtech-gambling-enterprises-2026-contrast-professional-ranked-internet\/","title":{"rendered":"Most useful Playtech Gambling enterprises 2026 Contrast Professional-Ranked Internet"},"content":{"rendered":"

About checklist below, we\u2019ve gathered a knowledgeable slot online game to winnings currency that bring that it motif your playing with several incentive have. Loaded with step and you can huge earn possible, Crazy Western-themed position online game are a famous option for users. The best slot machine game are imaginative provides, also the picture and you can voice. This slot games has actually arbitrary benefits chests one prize prizes such as for example multipliers, a lot more 100 percent free revolves, cash honors, and sticky wilds. Their volatility is set in order to typical, it affects a balance between normal wins and you can satisfying earnings.<\/p>\n

Pink Panther and his awesome nothing buddy paint a wall structure of number when you look at the green and you can blue towards the Color Green Added bonus, with the quantity of pink digits as being the multiplier for the newest share. Red Panther opens up safes locate totally free games, multipliers, or an ever growing Crazy on reel 3, and when the guy will come through to a safe with explosives, 100 percent free spins begins with any services and products he has got was able to simply take. Because it\u2019s good multiple-spin games, in which very first press of one’s Twist option simply turns new conclusion, providing a choice of holding that, several, or every three reels. That it series was popular only at Ports Frog into prospective so you’re able to winnings huge making use of their interrelated modern jackpots. This type of games are made to promote consistent profits, causing them to perfect for lengthened play instruction.<\/p>\n

Playtech real time casino games bring a immersive experience, due to the elite yet enjoyable servers and buyers, brilliant studios in many metropolitan areas, and you can interactive alive speak have. The choice possess one another important models and you can modern variations, between Superior Blackjack and 101 Roulette in order to Quantum Black-jack Instant Enjoy. You could gamble vintage dining table games and roulette, blackjack, and you can baccarat from the Playtech casinos. Even better, Playtech\u2019s selection of modern harbors now offers a few of the most significant honors shared at United kingdom gambling enterprises, like Ages of this new Gods, which includes a top payout carrying out at the \u00a3a hundred,000.<\/p>\n

If you’re looking playing Playtech online game for real money, check out all of our Playtech gambling enterprises webpage and acquire a knowledgeable online casinos giving Playtech headings. We cannot neglect Playtech’s set of desk video game or other sizes off casino games, with many lucky hippo casino<\/a> different black-jack, roulette and you can video poker headings getting players to pick from. Operating the fresh crest of the websites wave, they circulated its iPoker circle inside the 2004, which could fundamentally get to be the most significant internationally, therefore already been exchange to the London Stock-exchange after. Their almost every other preferred games were Dr. Lovemore harbors, that is an incredibly cheeky, but really enjoyable-occupied games, with so much to seem toward; and also the Gold Rally, that is certain to make it easier to reap enormous benefits. The insane and you may scatter symbols have become popular in Playtech online game and most games also become 100 percent free revolves and you will 2nd display screen bonus enjoys. There is also a legendary associated soundtrack and emails are the new emails regarding greatest Ridley Scott brought movie.<\/p>\n

They include the most popular image and gameplay in the industry. It were greatly prominent ports with gigantic profits. Even today, the latest Playtech providers still keeps its specialized headquarters, that is on the Isle of Man. RTP cost are crucial whenever choosing which games are reasonable.<\/p>\n

Wasteland Cost was an older position released because of the merchant for the 2005, yet still extremely appreciated headings. It is an extremely erratic machine providing 50 paylines on the a beneficial 6×4 grid and you may wagers getting together with \u20ac375 per twist. Buffalo Blitz is an additional epic slot by Playtech, and the basic term was launched in the 2016. The most significant house of the label and all sequels then is the modern jackpot circle offering cuatro bins. Their real number try far greater all over every jurisdictions where company retains permits to run.<\/p>\n

The firm ‘s the premier online game supplier exchange toward London Stock market Fundamental Market. As opening its doorways inside 1999, Playtech might one of the largest iGaming software designers. It assess the internet sites towards online game top quality, games range, user experience, customer support, Playtech casino totally free added bonus also offers, financial choice, and much more. Although not, it could be difficult to choose an informed Playtech casinos whenever you are served with too many possibilities, therefore we did the tough do the job.<\/p>\n

Free Playtech casino ports, while you are technically providing the exact same gameplay, lack you to exact same thrill. Playtech also provides a selection of alive casino games together with live blackjack, roulette, baccarat, video game shows, and also a real time free ports name. You will find desk and you will cards such as for example black-jack, craps, and you can roulette, plus video poker headings. Whether this can be thanks to increased image otherwise a separate bonus element, they are always looking for ways to promote members with. Play the most readily useful slots which have free revolves, wilds, multipliers, and huge jackpot honours 100percent free and no down load with no subscription right here towards all of our web site.<\/p>\n

Usually, you\u2019ll must render their SSN otherwise passport amount and you may from time to time more verification such as for instance a duplicate of one’s passport, driver\u2019s permit, household bill, or evidence of address. You\u2019ll getting brought to a subscription web page the place you\u2019ll must offer personal statistics like your full name, time out of delivery, email address, and regularly contact number. For each program gets advantages and disadvantages, that it\u2019s your choice to choose what you well worth one particular and you can everything hope to discover from the gambling establishment experience. Playtech\u2019s goods are on a regular basis examined and you will formal from the independent organizations such as eCOGRA, making sure fairness and you can randomness within online game. The sole setback is actually needing to suspend its deals with sweepstakes operators inside Ca and you can sign up for of the condition. Playtech announces the hole from a special real time gambling enterprise facility during the Michigan, next broadening its You.S. impact.<\/p>\n

One of the primary one thing i noticed regarding the Playtech is the natural measurements of their game library. The firm is authorized to run into the more than 20 places , making certain its game meet with the strictest regulatory standards. Headquartered about Area off Son , a hub to own regulated on the internet betting, the business rapidly centered alone because the a leader in the development cutting-edge gambling enterprise choices. When choosing an online gambling enterprise video game supplier, it\u2019s vital that you learn where they originated and just how it\u2019ve xxx historically. I unearthed that the organization has been a dominant push inside the the because the its founding in 1999, making it probably one of the most educated business online. 3.) The organization\u2019s application energies some of the finest Uk online casinos and have wedding in various avenues off online gambling, including slots, table game, and you will real time agent video game.<\/p>\n

Simple options instance Charge and Charge card are perfect observe, however, way more self-reliance is obviously an advantage. Whenever choosing a beneficial Playtech gambling enterprise, just take a closer look at commission possibilities. We constantly look at the footer of the Playtech casino’s website in order to get the licenses.<\/p>\n

The web sites bring outstanding gambling options, will let you practice in advance of to try out the real deal currency, and ensure you enjoy safer gambling on line. All finest Playtech casinos give a range of the brand new developer\u2019s live broker game. Playtech is promoting multiple dining table video game, in addition to black-jack, baccarat, roulette, double dice, web based poker, and you can video poker. As well as alive agent desk online game, Playtech gambling enterprises and additionally function a premier number of digital dining table games. Plus having a comprehensive Playtech ports checklist, the brand new designer also is targeted on bingo playing and you may models element of Europe\u2019s most significant bingo sector.<\/p>\n

Playtech\u2019s app isn\u2019t simply an artwork spectacle; it\u2019s an excellent conductor regarding smooth gameplay. With the county-of-the-artwork graphics, lifelike sound files, and you will fluid game play, Playtech slots stay tall as the ideals off brilliance on the market. To start with permits one try various other games and have an effective be towards software vendor\u2019s choices ahead of committing finance. Playtech casinos are notable for providing generous bonuses in order to one another brand new and current members.<\/p>\n

Duelz Casino Yet another, gamified gambling establishment experience with a giant collection off harbors, as well as of a lot attacks regarding Playtech range. Red coral A foundation Playtech spouse, offering the full collection out of online game, in addition to personal live tables as well as the done Period of the brand new Gods show. Casumo A modern casino with a huge and you will varied games collection, as well as a group of Playtech live gambling enterprise tables. Casimba Noted for the enormous video game possibilities out-of a long number out of builders, also a good variety of Playtech slots. Betway A major international gaming brand name that have a huge multiple-vendor local casino part one to conspicuously enjoys Playtech\u2019s greatest jackpot online game. We\u2019ve made use of which appropriate listing to evaluate all site to the all of our record.<\/p>\n","protected":false},"excerpt":{"rendered":"

About checklist below, we\u2019ve gathered a knowledgeable slot online game to winnings currency that bring that it motif your playing with several incentive have. Loaded with step and you can huge earn possible, Crazy Western-themed position online game are a famous option for users. The best slot machine game are\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-96024","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/96024","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=96024"}],"version-history":[{"count":1,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/96024\/revisions"}],"predecessor-version":[{"id":96025,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/96024\/revisions\/96025"}],"wp:attachment":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/media?parent=96024"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/categories?post=96024"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/tags?post=96024"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}