/* 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":95654,"date":"2026-05-24T01:48:03","date_gmt":"2026-05-24T01:48:03","guid":{"rendered":"https:\/\/klecet.edu.in\/alumni\/?p=95654"},"modified":"2026-05-24T01:48:05","modified_gmt":"2026-05-24T01:48:05","slug":"multiple-diamond-slot-machine-play-free-igt-online-slots-games","status":"publish","type":"post","link":"http:\/\/klecet.edu.in\/alumni\/multiple-diamond-slot-machine-play-free-igt-online-slots-games\/","title":{"rendered":"Multiple Diamond Slot machine Play Free IGT Online slots games"},"content":{"rendered":"

Brand new Triple Diamond slot are going to be starred free-of-charge otherwise genuine profit legitimate casinos and you may playing internet. Triple Diamond slot is not necessarily the extremely appealing video game even from the Internationally Game Technology, however it is a pleasant one practice when you to definitely feels as though reminiscing the existing weeks. In this instance, a genuine currency put are expected to get into the overall game unless this has been made element of a no-deposit extra. As the on line Multiple Diamond video slot possess about three reels, merely about three icon combinations give earnings; this is exactly except for the game symbol, which also pays when several letters homes to the a great playing line. The principles out-of gameplay will always be the same within the quite a few of titles, so punters do not have to learn a separate method to play Multiple Diamond position video game.<\/p>\n

You can find audio for just about all the action you generate and therefore needless to say aided remain united states interested once we starred the new Triple Diamond slot machine game. As for the musical, you\u2019ll get a hold of productive tunes to relax and play as you twist for each position. Brand new setup of your own games is simple and easy offered no confusion as soon as we actually played the online game. During the the instruction towards the Multiple Diamond slot machine game, we learned that that which you are quite easy to get into.<\/p>\n

Ranging from left to best, the original option lets the gamer purchase the paylines. The shape issues is minimalistic but complete produce the feeling of a traditional casino slot games. Around the globe Video game Technologies are by far one of the primary gaming enterprises around the world and their qualities readily available for availableness in the over 2 hundred regions. Yes, the game is actually mobile amicable and can getting played for the one product. Sure, registered account with a gambling establishment could be the sole option to enjoy real money Multiple Diamond and get genuine earnings. People local casino site partnering having IGT would provide totally free supply towards demo setting.<\/p>\n

After you sign up for a different internet casino, you\u2019ll be eligible for discover incentive funds otherwise 100 percent free spins. Thus whenever you are profits might be regular, these types of will often be in the small opinions. This will be a good Ice Fishing gdje igrati<\/a> possibility to get a become on game and to find out if it suits your circumstances. You\u2019ll even be capable of getting dining table video game and real specialist titles away from a number of the industry\u2019s most useful builders in addition to wagering programs. The internet sites also offer a great amount of most other IGT possibilities towards Multiple Diamond casino video game, whether or not your\u2019re selecting classic-style or progressive videos harbors.<\/p>\n

Regrettably, this video game doesn\u2019t give an autopilot function \u2013 so that you\u2019ll need certainly to keep the on the job the fresh controls and you can vision towards the award! It operates for the credits and can feel cashed out in various other denominations like dimes, nickels, and you may home \u2013 just don\u2019t attempt to pick people gum with it. You don\u2019t must be a skilled casino player to love the game \u2013 the simple build enables you to browse the game easily. Its game play revolves completely within legs online game having insane multiplier symbols getting large payouts. Into the Multiple Diamond, getting you to definitely Multiple Diamond Sign nuts with the a winning payline brings a 3x multiplier, when you are getting two wilds on the same payline pays 9x the latest earn.<\/p>\n

Which term brings possibility the real deal cash prizes, also its possible 1199x full payment multiplier jackpot award you to definitely speeds up winnings. New Triple Diamond position real cash setting enjoys novel advantages but restrictions. The compatibility are similar all over additional operating systems, enabling entry to for a broad listeners.<\/p>\n

Multiple Diamond’s 3x\/9x framework turned into the new nice place\u2014punchy adequate to identify from Double, restrained adequate to take care of that real stepper-position be. The newest symbol ladder works from premium so you’re able to lowest-value classics. It\u2019s got that vintage slot speed in which you\u2019re also instantaneously towards second choice.<\/p>\n

The field of gaming has come a long method with regards to of the quality of experience and you will accessibility it’s. The newest multiple diamond symbol serves as good multiplier, enhancing your payouts whether it appears during the a fantastic combination. By obtaining three similar icons on reels, users is given that have a commission double the conventional winnings. With every spin, participants can decide so you’re able to wager on certainly three possible spin symbols. The video game now offers creative keeps for example a small-video game enabling one to twice your own earnings to five times.<\/p>\n

The combination from music voice, backlit signs, and you may mechanized lever gameplay even offers another type of blend of old-fashioned and modern position knowledge. That it position isn\u2019t only about nostalgia; it\u2019s from the big victories too, giving as much as 25,one hundred thousand credit on the 9th payline towards the primary consolidation. For 2 wilds you receive x ten multiplier, and 2 wilds merely in the place of different sign you receive x 9 multiplier and for step three wilds x 1199 multiplier. There are no book features within video game just unique signs hence brings specific excellent pay. I’ve in reality played this video game to your couples festivals due to the fact really as i always end having good equilibrium.<\/p>\n

If you like antique pokies video game additionally the earlier in the day IGT offering, Twice Diamond then you’ll like Triple Diamond. However, benefit from the effortless effect realizing that there are plenty of a whole lot more signs to match and multiple diamonds to look out for so you can house even more wins. The crucial thing you pick this is the nuts icons and they meaningfully raise your playing winnings. Around three of any symbol will pay best that have step three wilds expenses 1000X your own bet, 3-7’s pays 80X, 3-triple bars 40X, 3-twice taverns 25X, 3-solitary pubs or cherries 10X, three of every club 5X, a couple of cherries 5X and something cherry 2X your bet.<\/p>\n

But not, Multiple Diamond does have wilds, it can promote multipliers, and several ones is also started to extreme heights. So it online game utilises a traditional motif, loosely according to the antique harbors away from old. 2nd they must be better than the contending online casinos months. So it 3 reel slot machine game lies in the first struck Twice Diamond and also a great deal in common inside it as well as signs and reels however, changes with 9 paylines in the place of 1 and you will big payouts. Whether your\u2019re a skilled casino slot games connoisseur otherwise a newbie just dipping your toes in the water, the game even offers something for everybody.<\/p>\n

The big award inside the Multiple Diamond are step 1,199x the stake, accomplished by getting three Multiple Diamond Expression wilds on one payline. Click on the Wager Free key so you’re able to load the brand new Triple Diamond demonstration, decide to try the have and you can payouts and decide if it is a great games you love. Free games remain in specific online casinos. This game will be utilized simply once guaranteeing your actual age. Relaxed players will love exactly what\u2019s being offered, but when you\u2019lso are a big spender, you\u2019re better off that have another games.<\/p>\n

Whether or not your\u2019lso are trying to find low volatility gameplay or an incredibly unpredictable slot with countless paylines, IGT provides your shielded. A few of the old-school slots of IGT today browse a small dated, but the newest releases function cool picture and you will slick animated graphics. You are transported in order to Renaissance Italy, in which you\u2019ll stumble on some of Leonardo Da Vinci\u2019s most famous sketches, such as the Mona Lisa, and a couple of rewarding treasures. Large 5 Game written it greatest slot to own IGT more than about ten years ago, it stays perhaps one of the most popular online game at on the internet casinos. The newest picture are great, while the payouts will likely be high if you keep re also-triggering the fresh free spins and you can property numerous profitable combinations presenting beneficial icons. The newest style is a lot like Cleopatra and you can Wolf Work with, since the high earnings are available within the base games, as there are a captivating bonus bullet, that may offer up to 240 free spins.<\/p>\n

Even if i’ve assessed ports such as for instance Wolf Run offering fifty,000x, and you will She\u2019s An abundant Woman fetching twenty-five,000x. For folks who\u2019re also for the dated position games, anyone can play Triple Diamond free of charge and see how you adore they. Play Triple Diamond free-of-charge and see for yourself how frequently new earnings was increased.<\/p>\n","protected":false},"excerpt":{"rendered":"

Brand new Triple Diamond slot are going to be starred free-of-charge otherwise genuine profit legitimate casinos and you may playing internet. Triple Diamond slot is not necessarily the extremely appealing video game even from the Internationally Game Technology, however it is a pleasant one practice when you to definitely feels\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-95654","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/95654","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=95654"}],"version-history":[{"count":1,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/95654\/revisions"}],"predecessor-version":[{"id":95655,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/95654\/revisions\/95655"}],"wp:attachment":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/media?parent=95654"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/categories?post=95654"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/tags?post=95654"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}