/* 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":130981,"date":"2026-05-25T16:50:08","date_gmt":"2026-05-25T16:50:08","guid":{"rendered":"https:\/\/klecet.edu.in\/alumni\/?p=130981"},"modified":"2026-05-25T16:50:09","modified_gmt":"2026-05-25T16:50:09","slug":"wonderful-goddess-position-free-slot-video-game-to-play-on-the-web-by-igt","status":"publish","type":"post","link":"http:\/\/klecet.edu.in\/alumni\/wonderful-goddess-position-free-slot-video-game-to-play-on-the-web-by-igt\/","title":{"rendered":"Wonderful Goddess Position: Free Slot Video game To play On the web by IGT"},"content":{"rendered":"

Growing wilds, added bonus honors and you can Keep & Spin loose time waiting for the ball player to the trip into possibility at the a great streaming pot off silver. Confucius Say™ is here now to keep, with a grip & Twist function which causes double & multiple Progressives, an excellent Phoenix Free Feature, and Dual Revolves-design 100 percent free Game. At least five Spread icons in the main games give you eight Totally free Revolves, and would-be extra if the a lot more Scatters house from inside the special bullet. The rest icons will miss towards the base of your own monitor, enabling new ones to fall into their lay.<\/p>\n

If you want to boost your possibilities to win larger when you look at the Fantastic Dragon, you have got to take a look at the special icons of your paytable. This is your only chance for sticky wilds; it wear\u2019t secure during legs enjoy, and\u2019t retrigger much more revolves since feature starts. Including its co-worker, this game is created with a high spending has for example Hold letter Spin, four progressive jackpots, 100 percent free spins as well new wilds and you may scatters to increase the chances of successful big payouts. Around three, five, or four scatters upcoming launch 15, twenty-five, or twenty-five free spins, where the overall game symbolization provides the golden contact, turning more symbols towards the wilds.<\/p>\n

The chance of good x10,one hundred thousand earn definitely stuck my personal notice, and has instance nuts signs, scatters, and you may 100 percent free spins added to the brand new adventure. Every time you enjoy, you are not just watching a free Vegas casino harbors online game; you will be entering a world in which every twist can lead to an enthusiastic remarkable jackpot winnings! Once you\u2019ve installed brand new expansion, it can start record the revolves and dinner your right back your own analysis. IGT\u2019s Pharaoh\u2019s Opportunity position was put out when you look at the 2006 you you\u2019ll observe that the fresh graphics look some time dated. The latest free Pharao\u2019s Wide range position stands up well when comparing to extremely modern-day slots. Brand new Totally free Twist ability will be due to the fresh brand new Pyramid signs, you have got to twist 3 Pyramid cues to interact the new 10 100 percent free Spins.<\/p>\n

Have fun with the most useful local casino slots and look realistic slot game. There was a large distinctive line of premium harbors waiting for you. IGT refreshed the fresh position and you will additional a good jackpot in the Wonderful Goddess Mega Jackpot. For folks who\u2019re also selecting a comparable games to Fantastic Goddess, you\u2019re lucky. If you possess an apple’s ios, Android os, otherwise Screen Phone equipment, the game seamlessly transitions out of desktops to your house windows of cellular internet browsers.<\/p>\n

Before taking an immersive Greek excitement, read the most other historic and you may mythology-inspired ports for example Scarab, Gates out-of Olympus a thousand, and you can Cleopatra. This position looks particularly a simple-issue casino slot games, nonetheless it attempts to differ using its a couple pleasing provides. What exactly is enjoyable throughout the this type of symbols is the fact that the online game initiate the newest commission having at the very least a couple of similar icons. The only amendment in element is based on with the Super Stacks, that you’ll lead to into the base online game while the added bonus. In our Wonderful Goddess comment, we seen its use of fundamental game play and gaming legislation, where profits happen if you homes at the very least around three coordinating symbols in the best.<\/p>\n

It slot trend easily obtained possesses become an essential with many of titles now. This new relaxed characteristics of the backdrop contrasts into explosive colors to the playing grid, and therefore actively works to offer totally free Golden Goddess slot machine online good novel looks. The 5 by about three to relax and play grid regarding Fantastic Goddess position games is big adequate to security the monitor with little room remaining on every side to own a display of backdrop. Brand new display screen bursts to the colour of various other symbols wear four reels set on around three rows. To change to a real income play regarding free harbors choose a necessary local casino on the all of our website, sign-up, put, and commence to experience. It indicates the game play are vibrant, that have icons multiplying along the reels in order to make a great deal of means so you can winnings.<\/p>\n

The brand new titles try quickly offered really during your internet browser. You certainly do not need to produce an account to play free position games online. Players can only revitalize the online game Unlimluck Casino<\/a> in order to reset its money. No-deposit 100 percent free spins was issued simply for performing a free account, with no deposit requisite. Casinos on the internet within these states promote a zero-put added bonus together with 100 percent free revolves incentives, so you can gamble their slots free of charge for as long as your resister for an account. Totally free enjoy in addition to enables you to take to the latest video game the moment he’s put out, making sure you probably gain benefit from the motif and you may gameplay just before committing people financing.<\/p>\n

If in case you\u2019d instead decide to try this new seas earliest, our trial ports are ready and waiting. You\u2019ll get a hold of 1p ports where an individual spin claimed\u2019t cost more than simply reduce alter \u2013 good for an easy go even though you\u2019lso are finding out the experience of the newest reels. Just one twist turned a festive-inspired spin into the more 500,000 pounds obtaining in this player’s account. Consider classics eg Jackpot Queen game, Everyday Jackpots plus \u2013 also several exclusives you\u2019ll only get a hold of here.<\/p>\n

We appreciated the overall game selection, as well as their customer service is actually friendly too. We offer an enormous game selection, in addition to wonderful local casino – slots online game, you to definitely appeal to other preferences and needs. For much more mythological and you will historic harbors thrill, here are a few Fugaso\u2019s Conflict from Gods, Play\u2019n Go\u2019s Legacy from Lifeless, and JustForTheWin\u2019s Malware Kingdom. Inside Wonderful Goddess, new highlight try their Super Jackpot Progressive, which occurs when answering new grid having 15 unique symbols. Which have an RTP off 96.0%, Fantastic Goddess comes with a crazy, the fresh new Mega Jackpot signs you to definitely end in the fresh progressive prize, in addition to Extremely Bunch ability. In this article, I\u2019ll safety the newest parallels ranging from such common online slots games and you will pick specific book have that make for every game somewhat more.<\/p>\n

No matter what platform you decide on, at the Wonderful Goddess slots, chance in reality prefers brand new challenging. The new icon you receive will consistently regarding look for-a-bonus video game, and you will start out with 7 100 percent free spins (hence, alas, cannot be retriggered). After you homes nine identical signs into the central three reels, they trigger this new Free Revolves incentive bullet, equal to getting passed a golden the answer to a gem-occupied container. Even better, you will get 100 percent free spins, and the flower symbol acts as a cause one to unleashes this type of 100 percent free spins. For every single spin fills the fresh reels having hemorrhoids out of signs that may metamorphose toward any kind of icon at the beginning of a casino game, paving ways getting some effective combos. This game transports your for the cardiovascular system off a Grecian misconception, most of the for the fascinating promise of fattening their wallet from the same big date!<\/p>\n

It incorporate book tokens and supply higher level selection. Gold-styled online slots games simply take a unique invest the current range from betting circumstances. Otherwise check the Wheres the Gold from the Aristocrat to discover the vibes regarding old school cartoonish video game. As gold harbors constantly look really good and possess appealing game play, of many bettors such them, and popularity of such as video game does not decline.<\/p>\n

Wonderful Casino mixes familiar position favorites that have this new launches, and that means you score both “constant wins” and “jackpot-measurements of prizes” possible with respect to the term you decide on. Just before to tackle for cash, starting a profile and filling up your bank account in the an on-line gaming pub required. Ahead of a good punter can play silver-inspired ports, it\u2019s needed seriously to choose which much more enjoyable build. Such pokies are numerous or take a different set at the on line betting nightclubs. Because of this, a generous honor was waiting around for them.<\/p>\n

Wonderful Kingdom is actually played for the a basic-lookin grid out-of 6×5, but there’s some thing extra-special here\u2014an extra row that looks more than reels dos to help you 5. Strong on jungles regarding South america, you can find a wonderful Empire, loaded with special icons including bejeweled birds and you can glittering goggles. For those who\u2019ve played more IGT headings in past times, you have no troubles to play this as well. Very, what you can do to relax and play the free Fantastic Goddess free ports online game get rely on the nation your\u2019lso are to try out of. This new Crazy Icon are an excellent chip one claims \u201cFantastic Goddess\u201d, and therefore pays you step 1,one hundred thousand moments if it appears 5 times with the display. New function begins with 7 100 percent free revolves but can feel lso are-triggered.<\/p>\n

Wonderful Mister 777 no subscription slots when you look at the demonstration mode help you pick the best games in advance of saying bonuses, having smooth change so you’re able to a real income enjoy. Strike the site on the mobile browser, see any online game, prefer demo mode getting instantaneous 100 percent free play. Start with Starburst from the NetEnt for vintage game play one to never ever will get dated, Sunrays of Egypt 3 from the Booongo to own Hold and you can Win auto mechanics, and you may Aztec Magic getting progressive enjoys. Decide to try new higher-worthy of slots that have digital loans so that you\u2019ll know exactly tips optimize extra potential when real money\u2019s at risk. Touching control actually work in lieu of feeling as if you\u2019lso are trying strike tiny desktop keys. All the 3000+ games work properly with the touching products which have responsive build that conforms on screen dimensions.<\/p>\n","protected":false},"excerpt":{"rendered":"

Growing wilds, added bonus honors and you can Keep & Spin loose time waiting for the ball player to the trip into possibility at the a great streaming pot off silver. Confucius Say™ is here now to keep, with a grip & Twist function which causes double & multiple Progressives,\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-130981","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/130981","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=130981"}],"version-history":[{"count":1,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/130981\/revisions"}],"predecessor-version":[{"id":130982,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/130981\/revisions\/130982"}],"wp:attachment":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/media?parent=130981"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/categories?post=130981"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/tags?post=130981"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}