/* 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":59116,"date":"2026-05-20T14:21:47","date_gmt":"2026-05-20T14:21:47","guid":{"rendered":"https:\/\/klecet.edu.in\/alumni\/?p=59116"},"modified":"2026-05-20T14:21:48","modified_gmt":"2026-05-20T14:21:48","slug":"illinois-web-based-casinos-might-you-enjoy-lawfully-from-inside-the-il","status":"publish","type":"post","link":"http:\/\/klecet.edu.in\/alumni\/illinois-web-based-casinos-might-you-enjoy-lawfully-from-inside-the-il\/","title":{"rendered":"Illinois Web based casinos: Might you Enjoy Lawfully from inside the IL?"},"content":{"rendered":"

Initially demanding inside-individual membership, foxy bingo app<\/a> what the law states today lets completely remote account design, more boosting market usage of to possess sports betting experiences. Inside the 2023, VGTs shared rather for the county\u2019s playing tax money, emphasising their economic pros. In place of of several states, Illinois permits VGTs inside the registered associations for example taverns and you will food, and therefore contribute somewhat to say and regional earnings. While doing so, the official lotto, created in 1974, is still a life threatening cash resource, bringing people with various draw game and you can instantaneous entry. For the 2025, the state gift ideas an adult and you can regulated gambling environment which have multiple land-centered an internet-based wagering selection. The fresh new legalisation off county-manage lotteries and advent of riverboat gambling enterprises marked first out of managed gambling about county.<\/p>\n

“You will find lots of fun everytime I log on to my membership. However, it’d end up being nice when the there had been more of the joker game. Also, a great deal more purchases to possess sweeps gold coins!” – 3\/5 Lindsey, Trustpilot, February 19, 2025. New registered users try welcomed that have 7,five-hundred Coins and you may dos.5 Sweepstakes Gold coins for just signing up, together with a strong basic purchase offer regarding fifty,100 Gold coins and twenty-five Sweepstakes Gold coins for only $9.99. “I was subscribed to week, to be honest, We have simply invested 10$ i am also currently able to receive three hundred$, and You will find a great deal more in my own membership, the UI is very easy and appealing. The newest games is fun, while in fact earn. Thank you so much, Spree!” – 5\/5 K. Some of the ideal sign-upwards incentives offered by online casinos from inside the Illinois include a great $twenty five bonus through to account registration, a great $step 1,100000 deposit matches, and you will greeting bonuses at the various gambling enterprises. It means a particular sum of added bonus money is offered both to the signup or as a part of a temporary strategy. You’ll set bets to the horseracing and get lottery seats online, however, there aren’t any casino games offered.<\/p>\n

The fresh Seminole Tribe out of Fl purchased Hard-rock when you look at the 2007, plus it today works locations inside almost 70 places along the industry. Illinois betting legislation is targeted on registered gambling establishment providers, wagering organization, additionally the county lotto. Players who want to availability position game on line normally explore overseas local casino web sites giving various or lots and lots of position titles. When you’re real cash online casino playing was officially blocked about Home from Lincoln, IL customers can be incorporate offshore casinos without having any dilemmas. It indicates online game such as slots, blackjack, and you may roulette cannot be starred due to gambling establishment websites controlled by the Illinois Playing Panel. Certain casinos provide extra bonuses having professionals which deposit using cryptocurrency.<\/p>\n

IL turned into the next county so you’re able to legalize riverboat gambling enterprises once passing that it work. Within the 1990, the newest Riverboat Betting Act enjoy riverboat casinos to perform so long while they was basically shifting a river and never sailing to the Lake Michigan. Illinois does not allow to get-year-olds in order to gamble inside belongings-established or riverboat casinos. For those more youthful users in search of playing real cash gambling games outside expert bono charity gambling establishment night, you can expect a summary of courtroom 18+ web based casinos where they’re able to delight in certain dining table online game and the differences. Since the beginning of one’s 1800s, ahead of the statehood, the fresh new Prairie County is actually rich in riverboat casinos tugging over the Illinois River as much early settlers and you can immigrants away from Europe lead the information and knowledge and you can units so you’re able to gamble together with them.<\/p>\n

Out-of traditional fee procedures such as playing cards and you can bank transfers to the new increasing popularity of cryptocurrency, users can decide the choice you to definitely is best suited for their needs. Such information provide rewarding guidance and you can information to help people defeat gaming issues and keep maintaining a wholesome betting ecosystem. And their tools provided by web based casinos to ascertain playing limits is actually the answer to retaining a responsible and you can enjoyable playing feel.<\/p>\n

For this reason, it\u2019s impractical to believe the gambling equity and you can percentage responsibility one of other factors. The official along with happy toward websites course, allowing on the internet lottery from inside the 2012 and you can legalizing on the internet wagering during the 2019. In the 1990, the official turned one of the first so that mobile riverboat casinos, which have been allowed to offer fixed gaming services because the 1999. Writers designate related tales in order to inside the-home professionals editors which have knowledge of for every single type of thing area.<\/p>\n

If you find yourself laws features yet to take out-of, people can access overseas Arizona online casinos to relax and play their most favorite online game. Arizona features more than a couple dozen tribal casinos and you can launched online wagering inside the 2021. When you are no instant legislative change are needed inside 2026, new broadening judge stress and possible engagement of state attorneys general you are going to significantly change the way forward for sweepstakes-design gaming in Alabama. For the remainder of the nation, iGaming regulations differs from state to state.<\/p>\n

From that point, you\u2019ll appreciate many ongoing bonuses together with a good $one hundred recommendation extra in case the friend subscribes with your hook up. Given that 2020, it\u2019s already been court to get bets at the on the web sportsbooks when you look at the Illinois and you can, during the time of writing, you’ll find nine sports betting other sites accessible to residents. Plus, if you utilize our promo code DEADSPIN during sign up, you\u2019ll discover a plus out of 560,one hundred thousand Coins and 56 South carolina over the very first few days of subscription. For many who\u2019lso are looking an effective sweepstakes gambling establishment that has it all then Share.united states is the ideal alternatives. Getting coming back professionals, Crown Gold coins keeps an excellent VIP Bar, along with a daily log in extra and that increases once you check in for several days in a row. There\u2019s also an optional first buy package that delivers your 200% even more if you decide to purchase a lot of money out-of Coins.<\/p>\n

The entire advertisements wagering loans was paid to your AmWager membership in a single deposit in this seven (7) working days from conference the newest betting standards for this venture. Such as for example, to help you be eligible for the utmost incentive of $150 a primary deposit regarding $150 is necessary and you can complete bets need to equal $150 or even more contained in this 30 days away from sign-up. Offered to the latest AmWager customers who’ve perhaps not prior to now opened an AmWager membership. Incorporate strategy for the wager sneak and set an effective $1+ cash choice (min odds -500) every single day for 10 consecutive days starting day of account production. The newest Illinois online gambling market is really-set up, headlined because of the a powerful on line wagering industry.<\/p>\n

Nowadays, there\u2019s no authoritative timeline and absolutely nothing place in brick. It gives studies, instances, and real facts one a regulated internet casino market could work. Perhaps you have realized, on the internet wagering are court in the most common of your area. Meaning you\u2019re absolve to enter tournaments and you may winnings real cash on the DraftKings, FanDuel, Underdog, and other DFS software. Real-currency web based casinos and you will poker internet sites aren\u2019t legal from inside the Illinois but really, however, that doesn\u2019t imply you can\u2019t choice on line anyway.<\/p>\n

Available for players whom like challenging images and you may punctual-moving game play, PlayFame delivers continuous recreation and a casino-concept state of mind one to stands out. New users begin solid with 15,100 Gold coins and you can 2.5 Sweepstakes Gold coins once registering, close to regular promotions and you can regular offers to remain stuff amusing. With more than 800 slot games regarding best business such NetEnt and you will Practical Gamble, and a solid roster off live broker titles particularly roulette, black-jack, and you may baccarat, Good morning Millions brings the full-range local casino experience. When you are McLuck already merely helps Charge and you will Charge card getting Gold Coin commands, growing its payment options do raise entry to.<\/p>\n

In order to allege a no-deposit incentive, simply do a merchant account from the an online gambling establishment offering this type out-of strategy. Such bonuses render a danger-totally free betting experience, enabling you to speak about an alternate gambling enterprise and you can possibly win real currency in place of and make in initial deposit. No-put incentives offer an effective way for participants so you’re able to attempt local casino online game instead jeopardizing their own financing. This type of offers give an effective bonus to possess members playing an alternate gambling enterprise and shot this new game being offered. Sign-upwards bonuses make up the brand new people for signing up with an on-line casino, typically in the way of complimentary revolves otherwise added bonus bucks.<\/p>\n

A real income online casinos are not currently courtroom for the Illinois but you can gamble lawfully within sweepstakes gambling enterprises offered you meet the qualification requirements. The brand new laws and regulations perform now have to be introduced to resume this procedure. That it very experienced sportsbook features an extraordinary exposure out-of activities locations and you can an ingeniously tailored web site that is easy to use even for folks who\u2019re an amateur. Though two Costs was produced so you can legalize real cash on the web gambling, it has but really to arrive regarding the Prairie Condition. Consider, for people who sanctuary\u2019t already, just be sure to ensure your bank account for the first redemption.<\/p>\n","protected":false},"excerpt":{"rendered":"

Initially demanding inside-individual membership, foxy bingo app what the law states today lets completely remote account design, more boosting market usage of to possess sports betting experiences. Inside the 2023, VGTs shared rather for the county\u2019s playing tax money, emphasising their economic pros. In place of of several states, Illinois\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-59116","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/59116","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=59116"}],"version-history":[{"count":1,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/59116\/revisions"}],"predecessor-version":[{"id":59117,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/59116\/revisions\/59117"}],"wp:attachment":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/media?parent=59116"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/categories?post=59116"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/tags?post=59116"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}