/* 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":58472,"date":"2026-05-20T14:00:03","date_gmt":"2026-05-20T14:00:03","guid":{"rendered":"https:\/\/klecet.edu.in\/alumni\/?p=58472"},"modified":"2026-05-20T14:00:03","modified_gmt":"2026-05-20T14:00:03","slug":"borgata-on-line-casino-remark-pa-%ef%bf%bd-video-game-bonuses-and-you-may-defense-choose-2026","status":"publish","type":"post","link":"http:\/\/klecet.edu.in\/alumni\/borgata-on-line-casino-remark-pa-%ef%bf%bd-video-game-bonuses-and-you-may-defense-choose-2026\/","title":{"rendered":"Borgata On-line casino Remark PA \ufffd Video game, Bonuses and you may Defense Choose 2026"},"content":{"rendered":"

Brand new 100 percent free Game & https:\/\/10betcasino.uk.net\/<\/a> Multipliers added bonus round amplifies effective prospective while maintaining the latest game’s special monster motif. Cubee Go out Travel Adventure Harbors stands for Real time Gaming’s fresh side, giving an alternative betting sense you to definitely holiday breaks traditional slot events. In these added bonus rounds, signs including the Genie, Princess, and you can Palace perform effective combinations that can redouble your money notably. The game’s talked about function is dependent on the modern jackpot program, in which the Genie Miracle Nuts Ability can cause ample profits. Brand new slot machine game land at All of us web based casinos is not so much more exciting, and Borgata Gambling establishment stands at the forefront of so it gambling wave.<\/p>\n

Blood Suckers keeps a beneficial 5×3 style, twenty five full paylines, strewn wilds and two fundamental extra enjoys and therefore all the subscribe big earnings. Divine Fortune is actually a real classic in the wide world of films slots and something of the most extremely played Borgata gambling games. If you find yourself extremely towards theme, that it a number of totally free incentives to play Cleopatra on the internet will keep you choosing some time. Concurrently, it\u2019s an international frontrunner on construction and you may produce regarding playing assistance and gambling games.<\/p>\n

It\u2019s an extremely generous bring that can notably enhance your initial focus on from the gambling enterprise and increase the probability to help you rating a great victory otherwise an excellent jackpot on your own popular local casino game. What you’ll get through to indication-right up is actually an effective a hundred% meets of your put number of to $1000 also an additional $20 complimentary regarding electronic agent. So, whenever you are keen on sports gambling, which agent would be ideal for your. Supplied, the option isn\u2019t because the thorough as it’s from the other providers your you will come across, however, most of the key roulette versions try right here. Mentioned are a few of the enjoyable and you can prominent position video game your detailed recognized application designers have created. This means that, gamblers from New jersey will place wagers of many from the fresh break hits and cult classics one shape and you can identify the newest higher casinos in the an effective ones.<\/p>\n

The new Borgata On-line casino software boasts strong associate feedback, having 4.7\/5 with the Application Store and you can 4.6\/5 on the internet Enjoy. It\u2019s along with slightly helpful that one can discovered notification about position and you can offers. Borgata’s web site is quick, simple, and has now a top-avoid, ebony construction that appears great.<\/p>\n

The 96.84% mediocre commission payment is actually as good as ideal-level online casinos, and the game library advantages from Borgata\u2019s relationship that have providers particularly Development Playing, IGT, and NetEnt. Borgata\u2019s local casino is the most powerful part of the program, having a huge selection of video game comprising ports, dining table video game, alive specialist, electronic poker, and you can specialization headings including Slingo and you may scratch cards. New campaigns web page condition continuously, although the alternatives was smaller compared to that which you\u2019ll get a hold of on huge opposition such as for instance DraftKings Gambling establishment.<\/p>\n

It has a few alternatives for interested users as well as 2 pieces readily available toward promo code PLAYCAS. Brand new Borgata On-line casino expose a separate sign-up bonus inside the 2026. I\u2019ve split the fresh new Borgata for the most of the big kinds and you will assigned levels so you can know what to look for and tips victory.<\/p>\n

New clients can use the fresh ATSGATA incentive code to get good 100% basic put match up to $1,100, and $20 toward house, obtainable in Nj and Pennsylvania. All you need to create try head over to the offers part and you may claim the brand new $20 zero-deposit bonus. Sure, Borgata keeps a great $20 no deposit incentive that\u2019s included in their enjoy bonus plan.<\/p>\n

Borgata On line offers a comprehensive collection away from position video game between easy classic slot online game to modern video clips slots with hundreds of paylines and you will special game play possess. For many who sign-up today and then make a real currency put, it is possible to make full use of the Borgata Internet casino added bonus and gamble ports which have USD five-hundred more on your own bankroll. Brand new 100 percent free harbors at the Borgata on the internet are available towards desktop and you will smart phones and give you the game play expertise in complete, into the merely distinction as being the not enough real money bets and you will earnings. People who choose to stay in nowadays can also be do it because of the to relax and play films ports which feature templates from individuals Television and you may games suggests or preferred clips. Members whom take pleasure in records can enjoy games which feature themes such while the Old Egypt or perhaps the Aztec Kingdom. This is why modern casino slot games online game function so many some other themes and designs or take players to the an online trip around the globe.<\/p>\n

Which have lower minimum wagers, cent slots bring a resources-amicable choice for informal professionals just who nonetheless want the latest excitement of winning. Better, don\u2019t sweating it because the Borgata Online casino has got you secured which have a number of more slot online game to store stuff amusing. The advantage Revolves round, due to spelling Gold, are improved from the Megadozer function, carrying out an exciting gameplay sense one to cements Bonanza Drops once the most useful choice for slot lovers at the Borgata Online casino. Getting the new prestigious Zero. step 1 room within our top 5 checklist, Bonanza Drops of the Big time Gambling stands because a triumphant evolution of legendary Bonanza Megaways position. That have 3 reels and 5 paylines, so it slot was an excellent nod toward dear \u201cMeltdown\u201d collection, made to serve highest-bet fans. Total, Sonic Links not just brings an effective groovy atmosphere as well as packages a punch that have extreme effective options, making the better-earned put certainly our very own finest-ranks ports.<\/p>\n

One of the best products up until now, cuatro,000+ online game and you can a-1,100000 Extra Revolves allowed bonus \u2013 exactly what a good start because of it Borgata local casino. All of the offers was susceptible to certification and you will qualification criteria. This new professionals usually rating a welcome incentive- an excellent 100% first deposit complement so you can $step one,100 including will an effective $20 zero-deposit credit. To simply help users make better choices, prevent debateable internet sites, and you will comprehend the genuine chances at the rear of the latest video game. Mike doesn\u2019t just talk about casinos on the internet and you can sportsbooks he\u2019s has worked included.<\/p>\n

Which NetEnt vintage that offers 10 paylines, a highly reasonable 96.1% RTP (Come back to User) and you can an eye fixed-catching, colourful treasure theme, the most well-known position games to try out on the web in the usa. While you are shopping for things predicated on classic slot servers, you may be a massive sci-fi partner if not need certainly to gamble a television otherwise film-inspired online game, possible love playing ports into the Borgata Gambling establishment site. You to definitely opens a great dropdown menu which have backlinks for the banking and VIP parts \u2014 dos more buttons could easily match to your club, which seems foolish in my experience.If you are there are no strain, Borgata does much better than most online casinos.<\/p>\n

The 3rd name inside checklist, Hexbreak3r, possess an incredibly unique construction means, and its very enjoyable game play will certainly succeed a great favourite of yours shortly after your first few revolves. This incredibly tailored internet casino game arises from developer large IGT, and it\u2019s a wonder so it isn\u2019t more popular. Once you\u2019re also looking for the better harbors playing on line for real currency, it\u2019s very easy to become weighed down of the natural quantity of selection nowadays. For the growth of the web betting community while the expanding number of casinos on the internet releasing both in your area and you can around the globe, members are really spoiled having choices with respect to and that harbors to relax and play. It\u2019s in addition to an effective selection for local casino-basic participants just who worry about online game assortment, real time agent high quality, and you will aggressive commission percent. You wear\u2019t need to be a citizen out-of often condition so you’re able to sign upwards \u2014 you just need to become truly discover within this condition limitations whenever your play.<\/p>\n

All of us within Video game Big date Gambling establishment grabbed a glance at your choice of cent games on Borgata, and we will record the three you to definitely shell out probably the most, on average. Players is capable of big wins by getting one of many gemstones with differing winnings a variety of color. Provided by Microgaming, profiles could potentially assemble jackpots really worth as much as 15,000x regarding the Connect and you can Earn ability, uncharacteristic of cent ports. Your choice of every ports holistically is pretty minimal, but nearly the complete alternatives is penny ports. For people who\u2019lso are actually situated in one of several legal U.S. gambling establishment says of brand new Jersey otherwise Pennsylvania, where Borgata Online is legally active, you might sign up for have fun with a real income. If any of these LuckyTap titles enjoys stuck the eyes, or if you\u2019re just looking to possess a good on-line casino, it\u2019s for you personally to check in from the Borgata On the internet.<\/p>\n","protected":false},"excerpt":{"rendered":"

Brand new 100 percent free Game & https:\/\/10betcasino.uk.net\/ Multipliers added bonus round amplifies effective prospective while maintaining the latest game’s special monster motif. Cubee Go out Travel Adventure Harbors stands for Real time Gaming’s fresh side, giving an alternative betting sense you to definitely holiday breaks traditional slot events. In\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-58472","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/58472","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=58472"}],"version-history":[{"count":1,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/58472\/revisions"}],"predecessor-version":[{"id":58473,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/58472\/revisions\/58473"}],"wp:attachment":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/media?parent=58472"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/categories?post=58472"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/tags?post=58472"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}