/* 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":68376,"date":"2026-05-22T15:41:07","date_gmt":"2026-05-22T15:41:07","guid":{"rendered":"https:\/\/klecet.edu.in\/alumni\/?p=68376"},"modified":"2026-05-22T15:41:08","modified_gmt":"2026-05-22T15:41:08","slug":"play-cleopatra-slot-machine-game-on-line-free-gambling-enterprise-position-games-of-the-igt","status":"publish","type":"post","link":"http:\/\/klecet.edu.in\/alumni\/play-cleopatra-slot-machine-game-on-line-free-gambling-enterprise-position-games-of-the-igt\/","title":{"rendered":"Play Cleopatra Slot machine game On line: Free Gambling enterprise Position Games of the IGT"},"content":{"rendered":"

For many who just enjoy all 20 paylines, Cleopatra video slot will have typical difference, and you may boost it because of the reducing the level of paylines you\u2019lso are to relax and play. This is one of the most prominent position of all moments, and that i features starred it commonly to find out the thing that makes it so, so i normally share my personal findings to you. Free revolves extra with a 3x multiplier gives of a lot large chance to have successful…Antique favourite!<\/p>\n

Finishing off the added bonus parts of the overall game would be the vintage insane signs, right here too depicted given that a treasure encrusted scarab which can simply take the place regarding other ft video game signs and work out up a beneficial winnings range. Whilst it can just only getting triggered in the event that free revolves is actually Razor Returns jogar demo<\/a> getting played, professionals only have to property step three extra symbols so you can trigger it. Like with current online slots, you can find totally free spins up for grabs having participants just who would in order to land step 3 of silver Leopard scatter symbols. For folks who\u2019lso are trying to find epic video game element offerings then the free Cleopatra position features your totally covered with step three high-using added bonus icons which might be bound to visit your bucks-out fly up.<\/p>\n

The most significant along with the Cleopatra game is you wear\u2019t need homes all the 5 of the same symbols in order to win fruitful earnings. Even with brief bet, the video game left me personally entertained for some time. With the RTP into the lower top, there are greatest harbors on the market to relax and play if you\u2019re also trying to find more regular victories. If you belongings 3 or even more anyplace to your reels, you will end up in this new Cleopatra Bonus game, in which your profits are tripled. The new maximum victory is extremely unbelievable coming to ten,000x your risk, specifically compared to the other game such as for instance Butterfly Staxx (640x) and you can EggOMatic (125x). Another highest paying symbols would be the Beatle in addition to Lotus flower, each other using 750x your stake.<\/p>\n

Create your basic deposit and you can unlock an exciting desired extra regarding one hundred Totally free Spins toward selected ports! Is actually our ideal selection of online slots and you can mobile harbors from the joining and you may a greet extra! On Enchanting Las vegas gambling establishment, you will find online slots games of certain most useful online game team. And make online slots more charming for the people, games business has added some fascinating features such wilds, scatters which have multipliers, bonus cycles, 100 percent free spins, an such like. What amount of paylines that one may see with the online slots games varies from ten & shorter, 15, 20, 25, 30, 40 and you will fifty & over.<\/p>\n

Although not, for individuals who enjoy responsibly and are usually smart along with your bets, we provide the bankroll to visit quite a distance. With 10,000x gains on purse, you\u2019re also better off to tackle Cleopatra. You can gamble Cleopatra on the smartphone here on the this site in place of downloading gambling establishment software otherwise starting a free account. By doing this, your money will stay unchanged, of course you\u2019lso are lucky, you\u2019ll find it expand. Maintain your bets small, understand when you should journal out, and you can have fun with a very good direct.<\/p>\n

Your preferred bet has an effect on all 20 paylines additionally – there is no need so you can configure private line bets. Cleopatra Gold added improved graphics for high-definition windowpanes. Cleopatra really stands among the extremely legendary slots ever before written, captivating players around the world as the IGT (Globally Online game Tech) basic put-out they within the 2005. Which layout is not difficult sufficient to be certain that newbies notice it effortless placing a bet. The game hence promises more pleasurable and a lot more gains.<\/p>\n

This can unlock a pick display for which you pick one of three boxes to disclose exactly how many free revolves and you may multipliers. To bring about the benefit bullet, you will want to house step 3 or maybe more Sphinx icons toward display screen. For many who\u2019lso are perhaps not afraid of reasonable threats and you may favor secure earnings, this is your choice.<\/p>\n

Using its number of gambling choices, Cleopatra slot video game caters to all types of participants, out-of casual players in order to big spenders. This type of personal bonuses can supply you with the fresh border you should optimize your winnings and you may totally enjoy the ancient Egyptian excitement one to Cleopatra ports promote. Presenting the new romantic king herself, Cleopatra\u2019s Crazy symbol increases your own earnings and you can substitute another icons, barring the fresh new Spread out. The interest regarding Horus icon honours extra totally free revolves and you will expands the brand new victory multiplier during the free spins added bonus round, making it a strong icon regarding the online game.<\/p>\n

You’ll be able to earn with multiplier boosts and you will the bonus possess. The main benefit have throughout the game are wilds, free revolves, multipliers, and you will wild multipliers. Buffalo Gold by the Aristocrat boasts some extra enjoys, for instance the chance to winnings in step 1,024 implies. Check out a top online slots games webpages and select playing the brand new Buffalo Gold slot. Buffalo Silver combines vintage card ranking which have animals symbols. You can play Buffalo Gold on ios, Android os, and pc\u2014zero downloads needed.<\/p>\n

It is accomplished by aligning four Cleopatra wilds towards the an effective payline, leading to good multiplication of range risk by the 10,000x. Cleopatra slot game is recognized for the good totally free spins and you can extra series, bringing participants which have good-sized opportunities to enhance their profits. The Cleopatra position games has the benefit of a betting range you to lures the players. Users normally modify its betting method by the adjusting exactly how many effective paylines and you can switching its choice numbers.<\/p>\n

More and additionally is that it is slot machine having 20 spend-traces scatters that prize your own bets. You to definitely means a leading price away from get back in your payouts, letting you get a very rewarding betting sense during the stop of the betting class. To tackle IGT\u2019s Cleopatra are fun and first off effective, despite not-being while the magnificent as in some other of one’s precious slots. One of the many aspects of its prominence certainly one of Canadian people is the games\u2019s incentives, that offer people the chance to secure large profits.<\/p>\n

There\u2019s really nothing low-familiar within position games, it\u2019s only simple classic slot gameplay and you will a free spins video game that have tripled honours. One example of the is you can expect to profit about a little more than simply 1 \/ 3rd of your revolves, which is perfect for the video game and you will allows you to feel like you\u2019re also geting paid back will. Some would surely even allege brand new reels try predictable and can construction playing steps doing the results.<\/p>\n

For each and every slot caused it to be compared to that list because of its book desire and lasting dominance. The organization has all studios, along with Bally, Barcrest, WMS, NYX, and you can NextGen, it is therefore also a primary rival in order to IGT and NetEnt. The organization provides put out a number of well-tailored digital table game over the years. The business\u2019s Megabucks harbors in the house-established casinos also have put number profits They are land-established slots an internet-based gambling games. The organization now offers slots, desk video game, and you may video poker, and it has the benefit of white-label sportsbooks and you will lotto games for team global.<\/p>\n

It could be mentioned that it is one of the extremely starred slot online game previously. Better, accepting the massive rise in popularity of the fresh new Ancient Egypt theme, IGT decided to include other label to your Old Egyptian themed harbors profile away from Cleopatra. That it motif have preferred massive prominence historically as it has facets with turned out to be irresistible in order to participants \u2013 talk of Pharaohs, this new Sphinxes, the new pyramids, as well as the mythical eye out-of Horus yet others. To start with created by IGT, it antique Vegas slot have captivated hundreds of thousands inside stone-and-mortar gambling enterprises prior to their answer to your own Caesars Slots monitor. And when you\u2019re also fortunate enough to help you residential property three or more Sphinx signs during the main benefit, you\u2019ll retrigger a comparable amount of 100 percent free Revolves, extending the latest excitement as well as your chances to win. Incase she seems, she just alternatives to own missing symbols to do successful paylines, however, she along with doubles your own profits!<\/p>\n","protected":false},"excerpt":{"rendered":"

For many who just enjoy all 20 paylines, Cleopatra video slot will have typical difference, and you may boost it because of the reducing the level of paylines you\u2019lso are to relax and play. This is one of the most prominent position of all moments, and that i features starred\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-68376","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/68376","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=68376"}],"version-history":[{"count":1,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/68376\/revisions"}],"predecessor-version":[{"id":68377,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/68376\/revisions\/68377"}],"wp:attachment":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/media?parent=68376"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/categories?post=68376"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/tags?post=68376"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}