/* 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":131201,"date":"2026-05-25T17:07:47","date_gmt":"2026-05-25T17:07:47","guid":{"rendered":"https:\/\/klecet.edu.in\/alumni\/?p=131201"},"modified":"2026-05-25T17:07:48","modified_gmt":"2026-05-25T17:07:48","slug":"how-exactly-to-enjoy-slingo-on-the-web-information-methods","status":"publish","type":"post","link":"http:\/\/klecet.edu.in\/alumni\/how-exactly-to-enjoy-slingo-on-the-web-information-methods\/","title":{"rendered":"How exactly to Enjoy Slingo On the web: Information & Methods"},"content":{"rendered":"

Therefore, we\u2019ve focused on internet that take on United kingdom participants and supply the fresh new correct combination of defense, payment selection, and you will game diversity. Their primary purpose should be to guarantee participants have the best sense online owing to globe-class stuff. Find finest casinos on the internet giving cuatro,000+ gaming lobbies, each day bonuses, and you may 100 percent free spins now offers. While we aren\u2019t the new operator our selves, reading these corners off things allows us to be sure everybody has a beneficial reasonable day.<\/p>\n

Slingo are a mixture or combo anywhere between slots and you may bingo (\u2018Sl\u2019 are away from harbors and you may \u2018ingo\u2019 regarding bingo however if it doesn\u2019t be noticed for your requirements quickly). With a support programme having customers, you will find several campaigns, challenges and you will local casino offers to benefit from. Club Local casino is actually a good British-focused on-line casino which have dos,000+ online casino games, a variety of financial selection, fast distributions and several advertising\/also offers. Created in 2023 and you can concentrated entirely on Uk people, Club Gambling enterprise provides more 2,000 gambling games in addition to over 50 Slingo headings.<\/p>\n

You will find Fluffy Favourites instead of Gamstop on an option of top web based casinos. Providing 117,649 an easy way to earn, the game requires Fluffy Favourites ports one stage further. Based on the unique games, that it adaptation centers around giving out 100 percent free revolves and you may online game, rendering it a popular giving in the sites having most readily useful casino incentives. The video game possess most of the animal emails we all know and love, also added bonus keeps instance Toybox Pick and you may totally free revolves. I alone feedback gaming sites and make certain all-content try audited meeting tight editorial standards. Managing Joker icons intelligently and you will capitalizing on most revolves is also notably alter your overall efficiency.<\/p>\n

For many who\u2019re also a new comer to it book betting layout, it obtained\u2019t take very long and watch as to the reasons participants like Slingo. You want to feedback so it on how to be sure what you was utilized precisely. Please be aware one account verification required prior to being able to access complete enjoys, also withdrawals, as part of shelter tips. We all know all of the web based casinos with Slingo games within the the united states, hence saves you off checking them out one at a time on your own! However, wear\u2019t allow the haphazard lead put you removed from enjoying which fun mashup off harbors and you can bingo.<\/p>\n

Out of totally free spins so you’re able to extra rounds, respins and much more, each game also provides even more opportunities to winnings a finances honor. Slot online game enjoys a great amount of special features which will make an engaging and you can enjoyable playing sense. Basic, created a merchant account with Primary Harbors for folks who haven’t currently done so \u2013 don’t get worried, it is easy and quick to-do. They\u2019lso are much more immersive and visually epic than harbors that have regular 2D graphics and gives a much more engaging pro feel. Out of totally free revolves so you’re able to offers to your deposit and a lot more, there\u2019s constantly something to discuss which have Each day Picks.<\/p>\n

Whilst possibility of winning into the bingo otherwise position kinds of the video game are equivalent, certain pros accept that online slots would render a somewhat high profit fee. Online slots games and bingo hosts is the same in a number of suggests, however, you can find very important variations as well. They have been models with additional enjoys and you can worthwhile bonus series, larger honours and much more. By variation anywhere between different online game, it\u2019s best if you familiarise yourself on cool features and unique symbols every time you gamble a new form of Slingo. Slingo enjoys a good amount of unique signs if in case you house such toward reels, you\u2019ll have the ability to collect a lot more things or unlock features.<\/p>\n

If you prefer ports and you will bingo, you’ll be able to like to tackle PlayOJO slingo bingo with our company. This game was a variety of harbors and bingo winz casino<\/a> , using both bingo seats and you may rotating reels to provide fascinating activity in addition to possibility to winnings bucks honors. Slingo is actually a combo off harbors and you may bingo that’s greatly addicting and provides players yet another and interesting betting experience. We shall cover the advantages of having the ability to play Slingo 100percent free an internet-based casinos that will be approved and you will trustworthy. Slingo are an exciting crossbreed out of harbors and you will bingo who’s got end up being significantly popular towards the online casinos.<\/p>\n

Always keep in mind, playing is meant to be enjoyable and you may periodic. Such web based casinos also offer numerous types of game, plus harbors and you may table game, to possess people to choose from. Start by hitting the green \u2018Subscribe\u2019 key near the top of this site and only fill out all of our short registration form. Very, having said that, you\u2019ll end up being very happy to know that our membership procedure is super quick. Whether you desire a perfect classics or the current casino slot games games jam-loaded with features, we\u2019lso are satisfied to go away your spoilt getting solutions. We realize almost every other bingo internet sites you will give you a choice of online game as well\u2026but we\u2019re exactly about adding a great cheeky little bit of fun for the virtual field of numbers.<\/p>\n

If you prefer bingo and you can such as slots, it\u2019s the online game for your requirements. Your victory by completing as much traces as you are able to, taking you higher up the honor ladder catching a lot more honours and you can to experience added bonus game as you go. Slingo Rainbow Wide range \u2013 While the common action, Slingo Rainbow Money has actually an astonishing nine incentive cycles, along with Miracle Toadstools and you will Pots out of Gold. Always keep in mind you to whilst it\u2019s a-game regarding chance, having a strong means can enhance your own gameplay and increase your own excitement.<\/p>\n

The websites will go for progressive payment tips, such as for instance Bitcoin or United states-focused notes, more than PayPal and other local favourites. It reputable and you may respected web site now offers an extensive options, along with multiple private tables developed in commitment which have Cayetano and other software company. Such advertising was upgraded apparently to keep fresh and you can tempting, will including reasonable betting conditions and sensible conclusion attacks. While doing so, as you\u2019ll get in the Sky Choice comment, you can start playing with a \u00a35 minimum deposit and you can availability various offers into the desktop computer and you will mobile gadgets the exact same. Heavens Choice is an additional beloved gaming webpages which provides game hence British users try keen on.<\/p>\n

If you\u2019ve existed for 5 weeks otherwise 5 years, you could potentially make use of our day to day Picks to own an alternate treat daily. In the Perfect Ports we like and then make the participants become at the home with a personal anticipate extra. Individuals internationally cannot get an adequate amount of to play harbors \u2013 they like spinning this new reels, wishing to property an enormous winnings or trigger a bonus bullet. Signed up and you can managed because of the Gaming Payment less than permit 2396 to have customers to try out inside our land-established bingo clubs. Subscribe Mecca Bingo, and not soleley could you play online slots throughout the best position organization in the business, however you\u2019ll supply access to our very own fantastic associate bonuses and you may offers. We\u2019re always convinced your\u2019ll get a hold of many harbors you like within our on line range during the Mecca Bingo.<\/p>\n

Rather, i work with people dear center and you may area places whenever a beneficial Nuts or Extremely Crazy appears. Today on to being top-going – it’s easy to score swept up about thrill of them ascending numbers. When you produce a special ability, thought quickly on precisely how to use it for more Slingo traces. In numerous Slingo video game, discover added bonus series you to definitely opened new a method to win.<\/p>\n

Slingo is an internet solitary and you will multiple-player game that mixes areas of slots and you may bingo (title is a good portmanteau of these two video game). Out-of enjoy packages in order to reload bonuses and a lot more, discover what bonuses you should buy during the our very own finest web based casinos. It\u2019s a cutting-edge treatment for generate both fruits servers and you will bingo end up being fresh and you will the fresh new. For individuals who\u2019lso are fed up with the same old ports and you can instantaneous victory game that you\u2019ve played over and over again during the online casinos, you might really have to bring Slingo a try. Including, there\u2019s Big money Slingo, and this randomizes different prizes for every single possible line profit, meaning some combinations are worth a lot more than others. Eventually, there\u2019s a demon, gives you little \u2013 which means you acquired\u2019t like to see him tend to if you plan to the profitable.<\/p>\n

Slingo is another blend of harbors and you can bingo, merging 1st areas of each other types into the you to definitely exciting the new game kind of who’s got pulled the latest iGaming industry by the storm. Maybe you’ve discovered your self questioning why there are too many Slingo online game in the casinos on the internet today? Anticipate fresh pointers whenever standout online game need focus. At Adept.com, all of the term is chosen to provide people an interesting, reasonable, and fun sense.<\/p>\n","protected":false},"excerpt":{"rendered":"

Therefore, we\u2019ve focused on internet that take on United kingdom participants and supply the fresh new correct combination of defense, payment selection, and you will game diversity. Their primary purpose should be to guarantee participants have the best sense online owing to globe-class stuff. Find finest casinos on the internet\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-131201","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/131201","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=131201"}],"version-history":[{"count":1,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/131201\/revisions"}],"predecessor-version":[{"id":131202,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/131201\/revisions\/131202"}],"wp:attachment":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/media?parent=131201"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/categories?post=131201"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/tags?post=131201"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}