/* 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":95414,"date":"2026-05-24T00:48:19","date_gmt":"2026-05-24T00:48:19","guid":{"rendered":"https:\/\/klecet.edu.in\/alumni\/?p=95414"},"modified":"2026-05-24T00:48:20","modified_gmt":"2026-05-24T00:48:20","slug":"flintstones-slot-machine-game-enjoy-no-download-free-slot-on-the-internet-from-the-playtech","status":"publish","type":"post","link":"http:\/\/klecet.edu.in\/alumni\/flintstones-slot-machine-game-enjoy-no-download-free-slot-on-the-internet-from-the-playtech\/","title":{"rendered":"Flintstones Slot machine game: Enjoy No Download free Slot On the internet from the Playtech"},"content":{"rendered":"

Five-of-a-kind with your will pay 10x-100x the latest choice, on the Flintstones netting the highest wins. A winning integration is done by getting 3 or even more coordinating signs on consecutive reels inside video game\u2019s traces, starting from brand new leftmost reel. The Flintstones is played to your all the preferred mobile devices and you may desktops. If your\u2019re also an excellent Flintstones lover or perhaps not, it\u2019s a colorful, comfortable means that people trust extremely people have a tendency to delight in.<\/p>\n

To collect the prices NaoBet<\/a> of currency symbols, you\u2019ll you prefer Fred. It looks given that sometimes a plus Boost, including most Scatters, otherwise a Dino Crazy, shedding for the most Wilds to shake something up and assist home a whole lot more winning combos. Upfront moving your pub on real-currency stadium, this new Flintstones position trial supplies the best possibility to talk about Bedrock instead of risking an individual prehistoric pebble. End up in brand new Free Revolves added bonus while\u2019re also transmitted to some other world. When using a beloved property including the Flintstones, there\u2019s constantly tension to discover the feel and look perfectly and you can Formula Betting demonstrably realized brand new assignment. Having Wilds, Free Spins and money gather have, that it on the web slot doesn\u2019t restrain regarding step-manufactured gameplay.<\/p>\n

A knowledgeable is amongst the slots\u2019 Bedrock bowling incentive, which is the prize having obtaining about three of your own bowling incentive scatters. But it’s a fairly shocking star just who takes new show when it comes to winnings – the brand new Flintstone\u2019s dog or cat, Dino, ‘s the greatest payer. Their closest friend Barney try next lined up in terms to commission offerings, bringing good 200x prize, accompanied by Wilma along with her 100x win and you will Barney\u2019s partner, Betty, holding the key to a prospective 80x haul.<\/p>\n

The game have a wizard pig locks during the bucks benefits graphic and you will includes Higher volatility a commission portion of 95% and offers a max winnings of five,500x. It launch introduced when you look at the 2026 and supply use of volatility ranked Large a theoretical RTP away from 93.5% and prospective victories doing max gains reaching 10,000x your own share. If you prioritize large maximum wins you’ll have a peek from the Leprechaun Visits Hell with a maximum commission of 50,000x, or Tombstone Slaughter El Gordo\u2019s Payback that have an amount big 500,000x maximum win. 10,000x is among a leading-stop max win plus it is preferable to the fresh new max earn of a lot almost every other online game though it\u2019s outside the ideal level out-of max victories.<\/p>\n

You have 3 reel, 5 reel, 6 reel, modern jackpots, licensed harbors, and. Its broad portfolio contains more than 600 of the most extremely brand new slot game which can be preferred with the both mobile and you may pc gizmos free of charge. They provides smooth game play that have excellent picture and you will sounds. It online position games from Playtech is a superb development which might be played towards the pc and you can mobile local casino website subscribers. The nice Gazoo alien looks, turning random signs on the player’s reels towards wilds. Wilma uses the lady elephant vacuum to save most of the wilds obtaining with the reels pursuing the twist incase your gather sufficient, you stand to victory larger.<\/p>\n

How will you decide which RTP sort of The newest Flintstones Rocky Wealth a casino already now offers within site you\u2019lso are playing to the? For this reason , knowing hence kind of The Flintstones Rugged Money you\u2019lso are to relax and play things plenty. Simply speaking going for the reduced RTP variation function their money disappears much faster. If you undertake the newest tough adaptation (92%) you\u2019d end up with just approximately 1250 revolves ahead of the money is gone. Due to this fact your really need in order to check always hence RTP adaptation their gambling enterprise can offer \u2014 in order to play within gambling enterprises that run The brand new Flintstones Rugged Wide range towards the highest offered RTP function. The new symbol lay doesn\u2019t alter anywhere between products while the bonus rounds all the research similar therefore the video game experience doesn\u2019t feel one additional.<\/p>\n

Since game play is actually entertaining, the real excitement is based on the 5 unique incentive provides. On the other hand, a rack out-of Fred\u2019s favorite ribs positions among the high-paying signs, providing an optimum win away from x60, following next the brand new shell cellular telephone which have x70 for five phone calls. The fresh style provides a good 5\u00d7step three reel grid shut in the a wood frame, tracked by the one of the primitive wild birds regarding cartoon. On the other hand, one or two most other bonus cycles watch for, plus you to showcasing Fred\u2019s outstanding yet unusual bowling enjoy. Enjoy about three novel extra have, along with Fred\u2019s bowling expertise as well as the volatile rocky drive which have Fred and you can Barney\u2019s prehistoric automobile. Sure, most of the games put just after to 2015 are mobile-amicable along with of several earlier titles.<\/p>\n

Silver Seafood Local casino Ports even offers players several a lot more than just 200 slots, and you can new titles are continuously set in the list. A lot of rewards are available under the water, and you may Silver Fish Gambling enterprise attracts one to earn these. After you\u2019re also complete, head by doing this to understand more about the most other online slots games.<\/p>\n

Truly the only symbols a wild claimed\u2019t option to are the spread out and money symbols. If you would like enjoys good yabba dabba doo big date having The Flintstones position online game, here\u2019s how to gamble. To make sure you be eligible for genuine-money profits, you need to be actually situated in your state where BetMGM Gambling establishment was managed. There are many high Tv show-inspired ports, but indeed there\u2019s just one fascinating online game out-of possibility you to\u2019ll transportation that the latest exciting city of Bedrock. By deciding to gamble through the quieter symptoms, including late at night or early in the brand new morning, you may come upon less players vying for similar perks.<\/p>\n

Here are a few the Greatest one hundred Ideal Harbors rating observe great titles you might demo into the webpages. Practice mode assists gamblers pick their favorite titles. Users reach take to lots of headings instead paying a penny.<\/p>\n

It\u2019s difficult to imagine an iGaming community in which punters can\u2019t practice game, specifically given a formidable amount of headings readily available. They\u2019ve rolling aside and you can continue steadily to release an excellent headings that stand related for many years. Should you want to take pleasure in a totally free slot demonstration designs released through this greatest team, you can start towards titles given below. By significantly cutting the amount of icons in his Independence Bell, Charles Fey managed to integrate automatic payouts.<\/p>\n

We express the experience and you will let you know about the games is played and you may performed. Check this out article more resources for Progressive Position, how it works, their groups, and also the popular headings. While a faithful lover off slot machines, you may should discover ports toward ideal payouts.<\/p>\n

The brand new Flintstones provides its novel layout versus most other gambling enterprise online game nevertheless control usually be common for many who\u2019ve starred almost every other Plan titles. Ian Evans is the maker out-of FreeDemoSlots.com, a forward thinking online system seriously interested in giving 100 percent free position video game to casual people and you can betting lovers exactly the same. Fun incentive has actually help the gameplay, offering possibilities to improve winnings.<\/p>\n

For many who\u2019re on the gambling establishment online streaming otherwise should gamble where lots of out of the biggest streamers hang out Roobet stands out as one of where you should play for people who appreciate that environment. To increase that it Risk rolls out regular raffles, promotions, and leaderboard contests offering people way more opportunities to profit. Aside from giving top production so you can professionals they\u2019re emphasized inside our list of highly rated gambling enterprises thanks on the epic test results which reinforces its profile. This type of gambling enterprises reliably supply the best-purchasing RTP versions for the majority of your tested slot headings and additionally The new Flintstones Rocky Wealth that is good news if you need the best possibility. It\u2019s an easy disperse that will determine your results somewhat a good portion in the manner long your enjoy in addition to the volume out of your victories while playing. Normally as you are able to like leading casinos that feature the whole 95% RTP particular The fresh Flintstones Rugged Money to maximise the effective potential.<\/p>\n","protected":false},"excerpt":{"rendered":"

Five-of-a-kind with your will pay 10x-100x the latest choice, on the Flintstones netting the highest wins. A winning integration is done by getting 3 or even more coordinating signs on consecutive reels inside video game\u2019s traces, starting from brand new leftmost reel. The Flintstones is played to your all the\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-95414","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/95414","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=95414"}],"version-history":[{"count":1,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/95414\/revisions"}],"predecessor-version":[{"id":95415,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/95414\/revisions\/95415"}],"wp:attachment":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/media?parent=95414"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/categories?post=95414"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/tags?post=95414"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}