/* 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":141482,"date":"2026-06-12T09:09:11","date_gmt":"2026-06-12T09:09:11","guid":{"rendered":"https:\/\/klecet.edu.in\/alumni\/?p=141482"},"modified":"2026-06-12T09:09:11","modified_gmt":"2026-06-12T09:09:11","slug":"help-desk-how-to-get-help-quickly-at-u-spin-casino-in-the-united-kingdom","status":"publish","type":"post","link":"http:\/\/klecet.edu.in\/alumni\/help-desk-how-to-get-help-quickly-at-u-spin-casino-in-the-united-kingdom\/","title":{"rendered":"Help Desk How to Get Help Quickly at U Spin Casino in the United Kingdom"},"content":{"rendered":"
\n\"Top<\/p>\n

Playing at an online casino should be straightforward and fun https:\/\/u-spins.com\/<\/a>. A big part of that is understanding where to go when you need help. U Spin Casino provides a customer support team for its UK players, designed to handle questions effectively. We’ve built several ways to get in touch because we aim for you to find the right help without delay, so you can return to your game. This guide covers all your options and gives you useful tips for handling any matter as fast as possible.<\/p>\n

Making the Most of the FAQ & Help Centre<\/h2>\n

Before you contact an agent, check out the FAQ and Help Centre. This is your main source for instant answers. It covers the questions we hear all the time, from how bonuses work to how to cash out. Everything is arranged into clear sections so you can discover what you need. Use the search box with words like “withdrawal time,” “wagering,” or “bonus code.” You’ll often find your answer right there. It eliminates the wait, and it lets our live agents concentrate on the trickier, personal cases, which enhances the service better for everyone.<\/p>\n

Frequently Asked Questions<\/h2>\n

What are U Spin Casino’s customer support hours in the UK?<\/h3>\n

Live Chat and phone support run during longer hours, from morning until late night, to suit when UK players are most engaged. You can find the exact times on the ‘Contact Us’ page. The email inbox is reviewed 24\/7, and you’ll have a reply inside the agreed period, typically in within 24 hours.<\/p>\n

Is the customer support team situated in the UK?<\/h3>\n

Yes, indeed. U Spin Casino’s support team is located in the UK. This means the agents understand local rules, popular payment methods, and the overall landscape. They can offer you help that’s relevant and makes sense for a player in the United Kingdom.<\/p>\n

Can I get get help with a technical game issue through support?<\/h3>\n

Certainly. The support team can address common technical glitches, like a game that won’t load or displays oddly. Provide them with the game name, what device you’re on (an iPhone, a Windows laptop, etc.), and copy any error message. If it’s a difficult problem, they could forward it to technical specialists for a closer look.<\/p>\n

How can I make a formal complaint at U Spin Casino?<\/h3>\n

We try to resolve things without formality first. If you’re nevertheless not satisfied, you can file a formal complaint by email. Attach all the particulars and any past messages about the problem. We’ll acknowledge it promptly and adhere to our internal process. If it remains unresolved after 8 weeks, you have the entitlement to refer it to the Independent Betting Adjudication Service (IBAS).<\/p>\n

Does U Spin Casino have support in languages other than English?<\/h3>\n

For the UK market, our support works in English. All correspondence on live chat, email, and phone is in English. This is crunchbase.com<\/a> to ensure clarity and accuracy, which is crucial when discussing terms, conditions, or money.<\/p>\n

What steps should I take if I’m not pleased with the support resolution?<\/h3>\n

If the resolution doesn’t appear right, ask for a senior support manager to examine your case. You can carry this out in the same chat or email chain. We listen to all feedback and want to achieve a fair outcome for every player at U Spin Casino.<\/p>\n

Good customer support is essential for a positive time at any online casino. U Spin Casino has built a support system with multiple avenues for our UK players, focusing on speed, clarity, and a professional approach. Utilizing the FAQ and the tips we’ve offered, you can often discover an answer on your own or be set for a quick resolution from an agent. The team is here to manage your questions and concerns effectively, so you can go back to playing with confidence.<\/p>\n

Specialized Support for Controlled Gambling<\/h2>\n

U Spin Casino is committed to player safety. We run separate, confidential support channels for anyone with concerns about their gambling. You can access tools in your account settings to set deposit limits, add session reminders, or self-exclude. Our support team gets specific training to handle these talks with understanding. They can guide you to these tools or to outside groups like GamCare and BeGambleAware. Asking for this kind of help shows you’re in control, and we handle every conversation with discretion and care.<\/p>\n

Key Contact Channels at U Spin Casino<\/h2>\n

U Spin Casino provides you several different ways to get in touch with the support team. Each one suits a unique kind of question or personal style. The concept is to allow you select how you want to obtain help.<\/p>\n

Instant Chat: The Speediest Way to Real-Time Help<\/h3>\n

If you require help immediately, utilize the live chat. You can find it on the website, and it puts you right to a support agent<\/a>. This is the finest choice for urgent problems, like a deposit that wasn’t processed or a game that’s glitching. The team, based in the UK, puts in long hours to manage the busiest times. In our experience, many common issues are fixed in just a few minutes through chat. Just tap the chat icon, usually sitting in the bottom corner of your screen, and start typing.<\/p>\n

Email Support: For In-Depth or Less Urgent Matters<\/h3>\n

Email is the right tool when your question requires a longer explanation or you have documents to send. It works well for formal complaints, account verification, or exploring your transaction history. You won’t get an instant reply, but you can expect to receive a full answer from someone who understands their stuff. A clear subject line and your username in the message aid us handle your email faster. It also creates a good record for you and for us.<\/p>\n

Phone Support: A Personal Touch<\/h3>\n

Some people prefer to talk. If that’s you, U Spin Casino has a phone line. Speaking to someone provides a personal element, which can be beneficial for more sensitive topics where tone of voice matters. The phone line is open during specific hours, all shown on the ‘Contact Us’ page. Have your account details handy when you call. It speeds up the security check so the agent can begin working on your question straight away.<\/p>\n

What You Can Expect After You Contact Support<\/h2>\n

Understanding what happens next helps create the right expectations. With live chat and phone calls, you’ll obtain an initial response right away. Emails receive an automated reply with a ticket number first, then a personal response within a set time, normally within 24 hours. The team will keep working on your issue until it’s closed, and they’ll update you if they need to look into it further. We also want to hear what you thought of the service. Your feedback helps us make things better for every UK player at U Spin Casino.<\/p>\n

The reasons Robust Customer Support Counts for UK Players<\/h2>\n

For anyone in the UK, good customer support is beyond just a bonus. It’s a key part of a protected and fair place to play. The UK gambling scene has stringent rules, regulated by the UK Gambling Commission, that concentrate on looking after players and making sure operators are transparent. A dependable support team fulfills these rules directly. It provides you a simple path for sorting out account problems, payment inquiries, or concerns about your gambling. When you believe that you’ll get a straight answer quickly, you can relax and feel at ease. U Spin Casino’s support is built with this in mind, to match what the watchdogs and our players anticipate.<\/p>\n

Key Guidelines for a Rapid Resolution<\/h2>\n

You can keep the whole support process quicker and smoother with a bit of prep. These tips help our team resolve your issue on the first try.<\/p>\n

Prepare Your Information Before Contacting<\/h3>\n

Preparing your details together is the finest thing you can do to speed things up. You’ll usually need your username, the email on your account, and any relevant transaction IDs or bonus codes. If it’s a game problem, note the game’s name and about when it happened. For a payment query, keep your bank or e-wallet info nearby. This prevents the conversation going in circles and lets the agent start investigating immediately.<\/p>\n

Precisely Describe Your Issue or Question<\/h3>\n

Be clear. When you contact us, give a short but complete picture of what’s going on. Say what you were trying to do (like “I wanted to withdraw \u00a350”), what actually happened (“the transaction failed and my balance stayed the same”), and any error messages you saw. Avoid vague phrases like “it’s broken.” The more specific you are, the sooner we can identify the cause and fix it.<\/p>\n

Sample of an Effective Query<\/h4>\n

A good query looks like this: “Hello, my username is ‘Player123’. I deposited \u00a320 with PayPal at 14:30 today, but the money isn’t in my casino balance. The PayPal transaction ID is ABC-123. Can you check on this deposit for me?” This supplies the agent every piece of information they need in one go, so they can start working.<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"

Playing at an online casino should be straightforward and fun https:\/\/u-spins.com\/. A big part of that is understanding where to go when you need help. U Spin Casino provides a customer support team for its UK players, designed to handle questions effectively. We’ve built several ways to get in touch\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-141482","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/141482","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=141482"}],"version-history":[{"count":1,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/141482\/revisions"}],"predecessor-version":[{"id":141483,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/141482\/revisions\/141483"}],"wp:attachment":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/media?parent=141482"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/categories?post=141482"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/tags?post=141482"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}