/* 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":96430,"date":"2026-05-24T09:27:14","date_gmt":"2026-05-24T09:27:14","guid":{"rendered":"https:\/\/klecet.edu.in\/alumni\/?p=96430"},"modified":"2026-05-24T09:27:16","modified_gmt":"2026-05-24T09:27:16","slug":"pragmatic-casinos-and-you-will-harbors-checklist-greatest-rtp-totally-free-play","status":"publish","type":"post","link":"http:\/\/klecet.edu.in\/alumni\/pragmatic-casinos-and-you-will-harbors-checklist-greatest-rtp-totally-free-play\/","title":{"rendered":"Pragmatic Casinos and you will Harbors checklist Greatest RTP + Totally free Play"},"content":{"rendered":"

House multiple multipliers in one single tumble combo plus the complete is actually extra together, performing the potential for some crazy wins. They could property at any time, from 2x right around 500x \u2014 and into the incentive bullet, it gather. In the place of good fresh fruit, you\u2019re handling rings, hourglasses, and crowns. A look for for individuals who\u2019lso are with the high volatility harbors but still want you to cartoon charm.<\/p>\n

Sensuous Pepper Reel Finance companies Outrage From Odin Megaways Bigger Trout Blizzard \u2013 Xmas Catch Santa\u2019s Great Merchandise Snakes & Ladders dos \u2013 Serpent Vision Gems Out-of Serengeti Protect Regarding Sparta Towering Luck Twist Score Megaways Discharge This new Kraken 2 Blade Off Ares Large Bass \u2013 Keeping It Reel Sweets Famous people Muertos Multiplier Megaways Firebird Spirit Pirate Fantastic Many years John Huntsman And also the Book Off Tut Respin Aztec Blaze Floating Dragon Megaways Insane Leap&Miss Crown Of Fire Publication Away from Fantastic Sands Striking Gorgeous 5 Delighted Hooves Octobeer Fortunes Flame Sexy one hundred Flames Gorgeous 40 Flame Gorgeous 20 Flame Gorgeous 5 On the Rails Beautiful To lose Extreme Black Bull Greedy Wolf Gorilla Havoc Magic Currency Maze Warm Tiki Shining Beautiful one hundred Shining Hot 40 Glowing Sexy 20 Radiant Gorgeous 5 Cosmic Bucks Bomb Bonanza Glucose Hurry Larger Trout Splash Bucks Patrol King Out-of Gods Chance Off Giza Zombie Festival Wild Western Gold Megaways Cleocatra Little Gem The nice https:\/\/amunra-casino.gr.com\/<\/a> Stick up Goblin Heist Powernudge Flames Hit 2 Northern Guardians Soul Out of Thrill Clover Gold Eyes Regarding Cleopatra Poultry Pursue Bore That Silver Barn Festival Spaceman Tic Tac Capture Rainbow Silver Crazy Beach Group Queenie More Juicy Megaways Snakes And you can Ladders Megadice You will Out of Ra Essential Jewels Megaways A perfect 5 Colossal Dollars Region Gates Off Valhalla Stone Vegas Super Keep&Spin Gold People Wild Depth Magician\u2019s Gifts Crystal Caves Megaways Smugglers Cove Christmas Huge Bass Bonanza Santa\u2019s Wonderland Book Of the Fell Very X Larger Bass Bonanza Megaways Bounty Gold Huge Juan John Huntsman Additionally the Quest for Bermuda Riches Celebrity Pirates Code Day’s Dead Cash Bonanza Mystical Captain Money box Debts Cost Insane Starlight Princess Larger Bass Bonanza Yum Yum Powerways Chilli Heat Megaways Rise From Giza Powernudge Fruit Cluster dos Chicken Miss Publication Off Vikings Empty The bank 5 Lions Megaways Fortunate Lightning Dragon Beautiful Hold And you can Twist Cardio Off Rio Panda Fortune dos The fresh Secret Cauldron \u2013 Enchanted Brew Cash Lift Phoenix Forge The incredible Currency Server Buffalo Queen Megaways Sensuous Fiesta Floating Dragon Keep & Spin Insane Booster Energy From Thor Megaways Racy Fruit Temujin Secrets Fishin Reels Sensuous To burn Hold And you may Twist Doorways Of Olympus Joker Queen The new Hand From Midas Eye Of your own Storm Dragon Kingdom \u2013 Sight Away from Flame Madame Future Megaways Congo Cash Emerald King Rainbow Road Mysterious Egypt Voodoo Secret Big Trout Bonanza John Huntsman And The Mayan Gods Spartan Queen Christmas time Carol Megaways Cowboys Gold Book Out of Kingdoms Pirate Gold Luxury Jewels Bonanza Go back Of your own Inactive Dragon Tiger 5 Lions Moving Emerald King Wild Walker Celebrity Bounty Insane Nuts Wide range Super Keep And you can Spin Curse Of your Werewolf Megaways Jungle Gorilla Your dog Domestic Megaways Aztec Gems Deluxe Higher Rhino Deluxe Roadway Racing Drago \u2013 Gems Off Luck Pyramid King Three-star Chance Starz Megaways Ultra Burn Fruits Party Hot To lose John Hunter Plus the Publication Off Tut Higher Rhino Megaways Fresh fruit Rainbow Insane Western Gold Dance Party The Wild Server Aztec Bonanza Mystical Master Joker Super 7s Release The latest Kraken Currency Mouse Magic Travel Buffalo Queen Greek Gods Sweet Bonanza Xmas Hercules And you will Pegasus Aladdin Therefore the Sorcerer Honey Honey Honey Flame Strike Forest Of Riches John Huntsman And the Tomb Of your own Scarab King Extremely Joker The favorable Chicken Escape Vampires of the underworld Against Wolves Hot Chilli John Huntsman Additionally the Aztec Benefits Monkey Warrior Nice Bonanza 5 Lions Gold Triple Jokers Pirate Gold Caishen\u2019s Dollars Your dog House Egyptian Fortunes Wild Pixies Additional Juicy Nuts Gladiators Safari Queen Value Horse Mustang Silver Leprechaun Carol Triple Dragons Old Egypt Vintage Las vegas Secret Master Chen\u2019s Fortune Da Vinci\u2019s Appreciate Leprechaun Tune Peking Chance Jade Butterfly Madame Future Asgard New Winners 5 Lions Higher Rhino Joker\u2019s Gems Flames 88 Fairy tale Fortune Aztec Jewels Ancient Egypt Lucky New year Chilli Temperatures Gold rush Monkey Insanity Multiple Tigers Santa Panda\u2019s Luck 7 Piggies Diamond Hit Vegas Night Insane Means Caishen\u2019s Gold Pixie Wings Jurassic Beasts Wolf Silver 888 Dragons 8 Dragons step three Kingdoms \u2013 Race From Purple High cliffs Hot Safari Panther Queen King From Atlantis Hercules Kid Of Zeus Dragon Kingdom step 3 Genie Wishes Go The west Happy Dragons Dwarven Silver Luxury 7 Monkeys Great Kong Women Godiva Wonders Crystals Latest titles including Twist & Get however confirm that it, while they function RTPs which can be nevertheless means before the globe mediocre. Let yourself to all of our personal promo password and you can allege your 5% rakeback contract to your united states \u2013 be sure to call-back and you can tell us on one large wins you homes because of these enhanced RTP Practical Enjoy slot online game. Of course, since i also specialize in investigating an informed sweepstakes ports no-deposit added bonus codes, i acquired\u2019t end up being delivering your out to Stake.you empty-handed. Alternatively, Sweeps Coins are the advertising and marketing coins at sweepstakes casinos which might be much harder to obtain. For the reason that some sweepstakes casinos don\u2019t possess fair video game and generally are perhaps not clear.<\/p>\n

However with a large number of game to select from, knowing the direction to go can feel overwhelming. These pages has been featured to own accuracy from the James Langley. Yet not, mathematical activities normally imagine probable RTP range predicated on historic activities, indicate reversion, and you will volatility profiles. The new theoretical RTP is decided from the video game merchant (e.g., 96.50%), since the observed RTP fluctuates centered on genuine enjoy lessons. Following we sensed maximum profits therefore the honor selection accompanying the rise during the earnings. To make a ranking that could be relevant to extremely professionals, we put some criteria to evaluate new studio’s collection.<\/p>\n

Of numerous providers names are common for you – Wolf Gold, Canine Home in addition to Dog Household Megaways, Nice Bonanza, Doors away from Olympus, Buffalo King and Buffalo King Megaways, Great Rhino, etc. There was an incredible sort of game from the developer’s rich profile. Whether or not you need low volatility video game with a high RTP and\/or games having a massive jackpot because the main prize you could potentially score, all kinds of games are available in a collection associated with the designer. Brand new wide variety of opening games allow it to be players to enjoy appropriate certainly to your\/the girl slot (otherwise dining table game). Very, in terms of me personally, when certain exposure takes place, it could be a whole lot more fascinating and you can interesting. For highest RTP harbors, they’re also offered to participants and certainly will become utilized in brand new portfolio of your own providers.<\/p>\n

To experience sweepstake local casino harbors is completely totally free, however, provides the potential … For some members they\u2019s about the potential output, no matter if to try out … For folks who\u2019d need talk about the Increased RTP selection of Practical harbors it\u2019s exclusively offered over at Risk.you. Impress Coins are just for fun, your totally free Sweepstakes Gold coins you may yield actual honors shortly after starred thanks to according to the operator\u2019s terminology. Our favorite sweepstake casinos providing the possibility to spin upwards Pragmatic Play harbors are Impress Las vegas. We\u2019d anticipate actually totally free-to-gamble online slots games to give an RTP away from 96% or even more, in accordance with community requirements.<\/p>\n","protected":false},"excerpt":{"rendered":"

House multiple multipliers in one single tumble combo plus the complete is actually extra together, performing the potential for some crazy wins. They could property at any time, from 2x right around 500x \u2014 and into the incentive bullet, it gather. In the place of good fresh fruit, you\u2019re handling\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-96430","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/96430","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=96430"}],"version-history":[{"count":1,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/96430\/revisions"}],"predecessor-version":[{"id":96431,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/96430\/revisions\/96431"}],"wp:attachment":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/media?parent=96430"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/categories?post=96430"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/tags?post=96430"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}