/* 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":95738,"date":"2026-05-24T02:09:46","date_gmt":"2026-05-24T02:09:46","guid":{"rendered":"https:\/\/klecet.edu.in\/alumni\/?p=95738"},"modified":"2026-05-24T02:09:48","modified_gmt":"2026-05-24T02:09:48","slug":"cleopatra-harbors-enjoy-100-percent-free-slot-machine-trial-igt","status":"publish","type":"post","link":"http:\/\/klecet.edu.in\/alumni\/cleopatra-harbors-enjoy-100-percent-free-slot-machine-trial-igt\/","title":{"rendered":"Cleopatra Harbors Enjoy 100 percent free Slot machine Trial IGT"},"content":{"rendered":"

Wager traces and you will number of paylines are still just like new totally new spin one brought about him or her during this added bonus element. The overall game is even practical for the almost every other mobile phones, iPads, pills, and other cellphone wise gadgets. Comparable Vegas ports games including Controls regarding Fortune includes $100,100000 awarded in the payouts every 2 days. Cleopatra slots possess typical volatility overall, meaning its smart aside good loans frequently.<\/p>\n

It can be said that it is one of the most starred position game previously. The main benefit might be retriggered multiple times, as much as a maximum of 50 free spins for each and every bonus. The fresh new Free Spins Added bonus are retriggered whenever three or more come anyplace to your reels. The newest Free Spins Extra try brought about when step 3 or even more come everywhere towards reels. In order to end in the main benefit round, you really need to homes step three or higher Sphinx icons into display screen.<\/p>\n

CategoryDetailsReel layout5\u00d73AutoplaySimpleTurbo modeNo (on condition that autoplay try activated)Simple useVery easyGame historyYes The game concept are brush, and you also\u2019ll find that which you obviously demonstrated. The newest icons try and created in 2D picture, planning hands for the real Egyptian motif. If you\u2019re also extremely lucky, and you will homes 5, after that your harmony will increase having ten,000x the stake. For individuals who belongings 2, their winnings could be twofold, step 3 will winnings your 200x your risk, while the cuatro usually payment 2000x your own bet. On the extra round, all of your current earnings is 3x and you may awake to help you 180 most 100 percent free revolves.<\/p>\n

The payouts is actually returned as fast as possible from these web sites. Brand new enigmatic Cleopatra stares on reels, and you will an effective pharaoh is the vital thing in order to incentive provides. Pharaohs spend multipliers all the way to 100x and you can hold money viewpoints throughout the a good respins extra ability having victories guaranteed. This new Cleopatra II position powered by IGT plays out on an excellent 5 x 3-reel style that have 20 paylines, referring having dos bonus have and you can a great 95.88% RTP. You will be delighted because of the exactly how IGT has actually combined high graphics, cool enjoys and you may quick gamble is perhaps all that you need in a good fun game.<\/p>\n

It increases the Ancient Egyptian motif, and that unnecessary online slots games go after. New Queen’s Extra was a new function into the feet video game that creates loaded signs and you may perks symbol multipliers getting big winning options! Cleopatra\u2019s Leadership position video game might be played from the Gambino Slots social gambling enterprise application.<\/p>\n

Envision rating the individuals larger wins which have a good 3x multiplier\u2014now that\u2019s fun! Featuring its 5 reels and you may fixed paylines, people is guaranteed a thrilling sense filled with prospective perks\u2014to an astounding 250,000x your bet! The fresh totally free Cleopatra slot is for anybody who desires sense good defining minute within the position background instead risking her finance. After you\u2019lso are leon casino<\/a> comfortable with the way the game really works, you could potentially change to a real income enjoy during the an internet gambling establishment. I recommend having fun with fullscreen to discover the best sense, and you may utilize the reload switch anytime you need certainly to reset the demonstration harmony. Yet not, the top victories rely on getting into you to added bonus bullet and taking lucky having retriggered spins.<\/p>\n

The benefit bullet stops whenever most of the 100 percent free spins had been starred away, and you’re pulled back once again to their video game. Therefore whether or not we wish to play for fun from the $.20 for every single spin otherwise play the restriction having an attempt at the the $100,100 greatest honor, this Cleopatra casino slot games make anyone happier. Cleopatra\u2019s Pyramid harbors has 5 reels, 20 pay-lines, and an advantage where you are able to victory 15 totally free revolves with multiple new earnings. So it Cleopatra position online game provides 5 reels, 20 shell out-lines, and you can a random progressive jackpot that you can earn aside from the wager proportions.<\/p>\n

The latest Nuts icons assist by the replacing to many other signs, as Scatter icons is also end in this new Cleopatra slots 100 percent free revolves extra bullet. Due to the fact Cleopatra slot machine game seems dated compared to the most other actual money or totally free-to-gamble ports on online casinos, it continues to have excellent image for its age. The storyline from Cleopatra might have been told many times into the video and instructions, nevertheless now you reach feel it as your twist new reels associated with the simple however, iconic Cleopatra online position out-of IGT. Cleopatra try an excellent 5-reel, 3-line, and you can 20-spend line medium difference on line slot having a beneficial 95.7% RTP, a stunning restriction win regarding 10,000x brand new stake, multiplier wilds, and you will a free of charge revolves extra having an excellent 3x profit multiplier. Not totally all position themes is actually because the preferred due to the fact Ancient Egyptian theme, and something of the very renowned online slots games to add it ‘s the Cleopatra slot away from IGT (All over the world Betting Tech). Alex dedicates the career so you can web based casinos and online recreation.<\/p>\n

Download the official app and revel in Cleopatra II whenever, anyplace with unique cellular bonuses! A switch emphasize of the online game ‘s the totally free spins incentive ability which have a progressive multiplier around 50x, resulted in epic earnings. Cleopatra II really works very well towards the cellphones, tablets, notebook computers, and desktops, making certain you could potentially play in a way that\u2019s convenient for your requirements. Cleopatra II is present playing on line at no cost during the Caesars Harbors, to help you benefit from the complete Las vegas feel about morale of your own settee, or anywhere you choose. Originally created by IGT, that it classic Vegas position enjoys entertained many during the brick-and-mortar casinos before you make their means to fix your own Caesars Ports screen.<\/p>\n

These types of changes maintain the slot’s easy yet , enjoyable game play, as well as its amazing theme, which are the key good reasons for its extensive prominence. Make sure you view the number less than to increase activities and getting positive about your own gaming courses. At the bottom you can view details about your current harmony, overall bet, and you can payouts.<\/p>\n

Well-known as well, that it next adaptation has many comparable features; including the 5\u00d7step 3 reels and you can 20 pay traces, and you may a totally free spins bonus ability. The benefit bullet includes 15 free revolves where earnings is tripled, and you can 100 percent free spins can be retriggered towards likelihood of delivering 180 totally free revolves. Offered its achievements, IGT chose to adapt its extremely played slot to your digital world in the 2012 by simply making an online adaptation.<\/p>\n

More nine decades out-of getting real recreation, large gamble, and you can memorable evening. The audience is here so you’re able to remain things fun, any sort of your look off enjoy. To transmit an easy method in order to bet and enjoy – that have greatest-level solution and you may generous rewards to keep the action running. Which higher RTP, along with the games\u2019s typical volatility, brings skills toward prospective payouts and you may gameplay methods, making it possible for participants and work out informed choices when to play Cleopatra slots. To possess a maximum Cleopatra slots gambling sense, understanding the video game\u2019s volatility and you may RTP is essential since these activities can affect your own prospective winnings and gameplay strategies.<\/p>\n

100 percent free game can be retriggered many times around 180 free video game for each added bonus. After every spin addititionally there is an additional-opportunity incentive to get played. This new Mega Jackpot version enjoys all the favorite Cleopatra-styled profits, but the bonuses had been super spiced-to bring professionals the opportunity to hit the jackpot. Brand new Cleopatra show now has over half dozen game, for every single with exclusive game play and you can great features. Almost a decade as a result of its debut in brick-and-mortar casinos, the first online game has actually went on to position being among the most starred ports traditional an internet-based. Immediately following to experience the video game for a long period, We merely was able to select 4 bonus enjoys when you look at the Cleopatra Silver, into head highlights becoming Fantastic Spins and you can Free Revolves<\/p>\n","protected":false},"excerpt":{"rendered":"

Wager traces and you will number of paylines are still just like new totally new spin one brought about him or her during this added bonus element. The overall game is even practical for the almost every other mobile phones, iPads, pills, and other cellphone wise gadgets. Comparable Vegas ports\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-95738","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/95738","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=95738"}],"version-history":[{"count":1,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/95738\/revisions"}],"predecessor-version":[{"id":95739,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/95738\/revisions\/95739"}],"wp:attachment":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/media?parent=95738"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/categories?post=95738"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/tags?post=95738"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}