namespace Elementor; use Elementor\Core\Admin\Menu\Admin_Menu_Manager; use Elementor\Core\Wp_Api; use Elementor\Core\Admin\Admin; use Elementor\Core\Breakpoints\Manager as Breakpoints_Manager; use Elementor\Core\Common\App as CommonApp; use Elementor\Core\Debug\Inspector; use Elementor\Core\Documents_Manager; use Elementor\Core\Experiments\Manager as Experiments_Manager; use Elementor\Core\Kits\Manager as Kits_Manager; use Elementor\Core\Editor\Editor; use Elementor\Core\Files\Manager as Files_Manager; use Elementor\Core\Files\Assets\Manager as Assets_Manager; use Elementor\Core\Modules_Manager; use Elementor\Core\Schemes\Manager as Schemes_Manager; use Elementor\Core\Settings\Manager as Settings_Manager; use Elementor\Core\Settings\Page\Manager as Page_Settings_Manager; use Elementor\Core\Upgrade\Elementor_3_Re_Migrate_Globals; use Elementor\Modules\History\Revisions_Manager; use Elementor\Core\DynamicTags\Manager as Dynamic_Tags_Manager; use Elementor\Core\Logger\Manager as Log_Manager; use Elementor\Core\Page_Assets\Loader as Assets_Loader; use Elementor\Modules\System_Info\Module as System_Info_Module; use Elementor\Data\Manager as Data_Manager; use Elementor\Data\V2\Manager as Data_Manager_V2; use Elementor\Core\Common\Modules\DevTools\Module as Dev_Tools; use Elementor\Core\Files\Uploads_Manager as Uploads_Manager; if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Elementor plugin. * * The main plugin handler class is responsible for initializing Elementor. The * class registers and all the components required to run the plugin. * * @since 1.0.0 */ class Plugin { const ELEMENTOR_DEFAULT_POST_TYPES = [ 'page', 'post' ]; /** * Instance. * * Holds the plugin instance. * * @since 1.0.0 * @access public * @static * * @var Plugin */ public static $instance = null; /** * Database. * * Holds the plugin database handler which is responsible for communicating * with the database. * * @since 1.0.0 * @access public * * @var DB */ public $db; /** * Controls manager. * * Holds the plugin controls manager handler is responsible for registering * and initializing controls. * * @since 1.0.0 * @access public * * @var Controls_Manager */ public $controls_manager; /** * Documents manager. * * Holds the documents manager. * * @since 2.0.0 * @access public * * @var Documents_Manager */ public $documents; /** * Schemes manager. * * Holds the plugin schemes manager. * * @since 1.0.0 * @access public * * @var Schemes_Manager */ public $schemes_manager; /** * Elements manager. * * Holds the plugin elements manager. * * @since 1.0.0 * @access public * * @var Elements_Manager */ public $elements_manager; /** * Widgets manager. * * Holds the plugin widgets manager which is responsible for registering and * initializing widgets. * * @since 1.0.0 * @access public * * @var Widgets_Manager */ public $widgets_manager; /** * Revisions manager. * * Holds the plugin revisions manager which handles history and revisions * functionality. * * @since 1.0.0 * @access public * * @var Revisions_Manager */ public $revisions_manager; /** * Images manager. * * Holds the plugin images manager which is responsible for retrieving image * details. * * @since 2.9.0 * @access public * * @var Images_Manager */ public $images_manager; /** * Maintenance mode. * * Holds the maintenance mode manager responsible for the "Maintenance Mode" * and the "Coming Soon" features. * * @since 1.0.0 * @access public * * @var Maintenance_Mode */ public $maintenance_mode; /** * Page settings manager. * * Holds the page settings manager. * * @since 1.0.0 * @access public * * @var Page_Settings_Manager */ public $page_settings_manager; /** * Dynamic tags manager. * * Holds the dynamic tags manager. * * @since 1.0.0 * @access public * * @var Dynamic_Tags_Manager */ public $dynamic_tags; /** * Settings. * * Holds the plugin settings. * * @since 1.0.0 * @access public * * @var Settings */ public $settings; /** * Role Manager. * * Holds the plugin role manager. * * @since 2.0.0 * @access public * * @var Core\RoleManager\Role_Manager */ public $role_manager; /** * Admin. * * Holds the plugin admin. * * @since 1.0.0 * @access public * * @var Admin */ public $admin; /** * Tools. * * Holds the plugin tools. * * @since 1.0.0 * @access public * * @var Tools */ public $tools; /** * Preview. * * Holds the plugin preview. * * @since 1.0.0 * @access public * * @var Preview */ public $preview; /** * Editor. * * Holds the plugin editor. * * @since 1.0.0 * @access public * * @var Editor */ public $editor; /** * Frontend. * * Holds the plugin frontend. * * @since 1.0.0 * @access public * * @var Frontend */ public $frontend; /** * Heartbeat. * * Holds the plugin heartbeat. * * @since 1.0.0 * @access public * * @var Heartbeat */ public $heartbeat; /** * System info. * * Holds the system info data. * * @since 1.0.0 * @access public * * @var System_Info_Module */ public $system_info; /** * Template library manager. * * Holds the template library manager. * * @since 1.0.0 * @access public * * @var TemplateLibrary\Manager */ public $templates_manager; /** * Skins manager. * * Holds the skins manager. * * @since 1.0.0 * @access public * * @var Skins_Manager */ public $skins_manager; /** * Files manager. * * Holds the plugin files manager. * * @since 2.1.0 * @access public * * @var Files_Manager */ public $files_manager; /** * Assets manager. * * Holds the plugin assets manager. * * @since 2.6.0 * @access public * * @var Assets_Manager */ public $assets_manager; /** * Icons Manager. * * Holds the plugin icons manager. * * @access public * * @var Icons_Manager */ public $icons_manager; /** * WordPress widgets manager. * * Holds the WordPress widgets manager. * * @since 1.0.0 * @access public * * @var WordPress_Widgets_Manager */ public $wordpress_widgets_manager; /** * Modules manager. * * Holds the plugin modules manager. * * @since 1.0.0 * @access public * * @var Modules_Manager */ public $modules_manager; /** * Beta testers. * * Holds the plugin beta testers. * * @since 1.0.0 * @access public * * @var Beta_Testers */ public $beta_testers; /** * Inspector. * * Holds the plugin inspector data. * * @since 2.1.2 * @access public * * @var Inspector */ public $inspector; /** * @var Admin_Menu_Manager */ public $admin_menu_manager; /** * Common functionality. * * Holds the plugin common functionality. * * @since 2.3.0 * @access public * * @var CommonApp */ public $common; /** * Log manager. * * Holds the plugin log manager. * * @access public * * @var Log_Manager */ public $logger; /** * Dev tools. * * Holds the plugin dev tools. * * @access private * * @var Dev_Tools */ private $dev_tools; /** * Upgrade manager. * * Holds the plugin upgrade manager. * * @access public * * @var Core\Upgrade\Manager */ public $upgrade; /** * Tasks manager. * * Holds the plugin tasks manager. * * @var Core\Upgrade\Custom_Tasks_Manager */ public $custom_tasks; /** * Kits manager. * * Holds the plugin kits manager. * * @access public * * @var Core\Kits\Manager */ public $kits_manager; /** * @var \Elementor\Data\V2\Manager */ public $data_manager_v2; /** * Legacy mode. * * Holds the plugin legacy mode data. * * @access public * * @var array */ public $legacy_mode; /** * App. * * Holds the plugin app data. * * @since 3.0.0 * @access public * * @var App\App */ public $app; /** * WordPress API. * * Holds the methods that interact with WordPress Core API. * * @since 3.0.0 * @access public * * @var Wp_Api */ public $wp; /** * Experiments manager. * * Holds the plugin experiments manager. * * @since 3.1.0 * @access public * * @var Experiments_Manager */ public $experiments; /** * Uploads manager. * * Holds the plugin uploads manager responsible for handling file uploads * that are not done with WordPress Media. * * @since 3.3.0 * @access public * * @var Uploads_Manager */ public $uploads_manager; /** * Breakpoints manager. * * Holds the plugin breakpoints manager. * * @since 3.2.0 * @access public * * @var Breakpoints_Manager */ public $breakpoints; /** * Assets loader. * * Holds the plugin assets loader responsible for conditionally enqueuing * styles and script assets that were pre-enabled. * * @since 3.3.0 * @access public * * @var Assets_Loader */ public $assets_loader; /** * Clone. * * Disable class cloning and throw an error on object clone. * * The whole idea of the singleton design pattern is that there is a single * object. Therefore, we don't want the object to be cloned. * * @access public * @since 1.0.0 */ public function __clone() { _doing_it_wrong( __FUNCTION__, sprintf( 'Cloning instances of the singleton "%s" class is forbidden.', get_class( $this ) ), // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped '1.0.0' ); } /** * Wakeup. * * Disable unserializing of the class. * * @access public * @since 1.0.0 */ public function __wakeup() { _doing_it_wrong( __FUNCTION__, sprintf( 'Unserializing instances of the singleton "%s" class is forbidden.', get_class( $this ) ), // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped '1.0.0' ); } /** * Instance. * * Ensures only one instance of the plugin class is loaded or can be loaded. * * @since 1.0.0 * @access public * @static * * @return Plugin An instance of the class. */ public static function instance() { if ( is_null( self::$instance ) ) { self::$instance = new self(); /** * Elementor loaded. * * Fires when Elementor was fully loaded and instantiated. * * @since 1.0.0 */ do_action( 'elementor/loaded' ); } return self::$instance; } /** * Init. * * Initialize Elementor Plugin. Register Elementor support for all the * supported post types and initialize Elementor components. * * @since 1.0.0 * @access public */ public function init() { $this->add_cpt_support(); $this->init_components(); /** * Elementor init. * * Fires when Elementor components are initialized. * * After Elementor finished loading but before any headers are sent. * * @since 1.0.0 */ do_action( 'elementor/init' ); } /** * Get install time. * * Retrieve the time when Elementor was installed. * * @since 2.6.0 * @access public * @static * * @return int Unix timestamp when Elementor was installed. */ public function get_install_time() { $installed_time = get_option( '_elementor_installed_time' ); if ( ! $installed_time ) { $installed_time = time(); update_option( '_elementor_installed_time', $installed_time ); } return $installed_time; } /** * @since 2.3.0 * @access public */ public function on_rest_api_init() { // On admin/frontend sometimes the rest API is initialized after the common is initialized. if ( ! $this->common ) { $this->init_common(); } } /** * Init components. * * Initialize Elementor components. Register actions, run setting manager, * initialize all the components that run elementor, and if in admin page * initialize admin components. * * @since 1.0.0 * @access private */ private function init_components() { $this->experiments = new Experiments_Manager(); $this->breakpoints = new Breakpoints_Manager(); $this->inspector = new Inspector(); Settings_Manager::run(); $this->db = new DB(); $this->controls_manager = new Controls_Manager(); $this->documents = new Documents_Manager(); $this->kits_manager = new Kits_Manager(); $this->schemes_manager = new Schemes_Manager(); $this->elements_manager = new Elements_Manager(); $this->widgets_manager = new Widgets_Manager(); $this->skins_manager = new Skins_Manager(); $this->files_manager = new Files_Manager(); $this->assets_manager = new Assets_Manager(); $this->icons_manager = new Icons_Manager(); $this->settings = new Settings(); $this->tools = new Tools(); $this->editor = new Editor(); $this->preview = new Preview(); $this->frontend = new Frontend(); $this->maintenance_mode = new Maintenance_Mode(); $this->dynamic_tags = new Dynamic_Tags_Manager(); $this->modules_manager = new Modules_Manager(); $this->templates_manager = new TemplateLibrary\Manager(); $this->role_manager = new Core\RoleManager\Role_Manager(); $this->system_info = new System_Info_Module(); $this->revisions_manager = new Revisions_Manager(); $this->images_manager = new Images_Manager(); $this->wp = new Wp_Api(); $this->assets_loader = new Assets_Loader(); $this->uploads_manager = new Uploads_Manager(); $this->admin_menu_manager = new Admin_Menu_Manager(); $this->admin_menu_manager->register_actions(); User::init(); Api::init(); Tracker::init(); $this->upgrade = new Core\Upgrade\Manager(); $this->custom_tasks = new Core\Upgrade\Custom_Tasks_Manager(); $this->app = new App\App(); if ( is_admin() ) { $this->heartbeat = new Heartbeat(); $this->wordpress_widgets_manager = new WordPress_Widgets_Manager(); $this->admin = new Admin(); $this->beta_testers = new Beta_Testers(); new Elementor_3_Re_Migrate_Globals(); } } /** * @since 2.3.0 * @access public */ public function init_common() { $this->common = new CommonApp(); $this->common->init_components(); } /** * Get Legacy Mode * * @since 3.0.0 * @deprecated 3.1.0 Use `Plugin::$instance->experiments->is_feature_active()` instead * * @param string $mode_name Optional. Default is null * * @return bool|bool[] */ public function get_legacy_mode( $mode_name = null ) { self::$instance->modules_manager->get_modules( 'dev-tools' )->deprecation ->deprecated_function( __METHOD__, '3.1.0', 'Plugin::$instance->experiments->is_feature_active()' ); $legacy_mode = [ 'elementWrappers' => ! self::$instance->experiments->is_feature_active( 'e_dom_optimization' ), ]; if ( ! $mode_name ) { return $legacy_mode; } if ( isset( $legacy_mode[ $mode_name ] ) ) { return $legacy_mode[ $mode_name ]; } // If there is no legacy mode with the given mode name; return false; } /** * Add custom post type support. * * Register Elementor support for all the supported post types defined by * the user in the admin screen and saved as `elementor_cpt_support` option * in WordPress `$wpdb->options` table. * * If no custom post type selected, usually in new installs, this method * will return the two default post types: `page` and `post`. * * @since 1.0.0 * @access private */ private function add_cpt_support() { $cpt_support = get_option( 'elementor_cpt_support', self::ELEMENTOR_DEFAULT_POST_TYPES ); foreach ( $cpt_support as $cpt_slug ) { add_post_type_support( $cpt_slug, 'elementor' ); } } /** * Register autoloader. * * Elementor autoloader loads all the classes needed to run the plugin. * * @since 1.6.0 * @access private */ private function register_autoloader() { require_once ELEMENTOR_PATH . '/includes/autoloader.php'; Autoloader::run(); } /** * Plugin Magic Getter * * @since 3.1.0 * @access public * * @param $property * @return mixed * @throws \Exception */ public function __get( $property ) { if ( 'posts_css_manager' === $property ) { self::$instance->modules_manager->get_modules( 'dev-tools' )->deprecation->deprecated_argument( 'Plugin::$instance->posts_css_manager', '2.7.0', 'Plugin::$instance->files_manager' ); return $this->files_manager; } if ( 'data_manager' === $property ) { return Data_Manager::instance(); } if ( property_exists( $this, $property ) ) { throw new \Exception( 'Cannot access private property.' ); } return null; } /** * Plugin constructor. * * Initializing Elementor plugin. * * @since 1.0.0 * @access private */ private function __construct() { $this->register_autoloader(); $this->logger = Log_Manager::instance(); $this->data_manager_v2 = Data_Manager_V2::instance(); Maintenance::init(); Compatibility::register_actions(); add_action( 'init', [ $this, 'init' ], 0 ); add_action( 'rest_api_init', [ $this, 'on_rest_api_init' ], 9 ); } final public static function get_title() { return esc_html__( 'Elementor', 'elementor' ); } } if ( ! defined( 'ELEMENTOR_TESTS' ) ) { // In tests we run the instance manually. Plugin::instance(); } {"id":109683,"date":"2026-07-03T05:09:28","date_gmt":"2026-07-02T23:39:28","guid":{"rendered":"https:\/\/urbanedge.co.in\/vrsi\/?p=109683"},"modified":"2026-07-03T05:09:28","modified_gmt":"2026-07-02T23:39:28","slug":"sphinx","status":"publish","type":"post","link":"https:\/\/urbanedge.co.in\/vrsi\/sphinx\/","title":{"rendered":"Sphinx"},"content":{"rendered":"

It is quite known as the battle crown since it is actually worn by kings of your own 18th dynasty of your the brand new empire just who familiar with use it in the course of fights. The brand new icon is protected by the newest jesus of one’s underworld Aker which comes in the form of a few lions for each side, each one representing the new eastern and you will western limits of one’s Egyptian underworld and now have yesterday & today. The brand new goddess of motherhood, recuperation, secret, and you will virility Isis is actually the inspiration at the rear of loads of icons and you may amulets such as the Crescent moonlight symbol which is thought to bring chance to any or all parents in addition to their people. All the Canopic Container portrayed all four sons out of Occasions to provide the best protection. The brand new jars have been placed into the a good canopic boobs after which tucked inside Egyptian Tombs for the sarcophagus of your own lifeless. More spiritual and you will religious product within the old Egyptian myths is actually the newest canopic jar which starred a vital role in the act from mummification, resurrection, and judgment.<\/p>\n

More apparent elements of which eternal guardian the commendable deal with are also those who provides suffered probably the most underneath the air of modern civilization. These types of pollutants combined with wetness in order to create \u201csmog-mist\u201d layers,an invisible veil one clung on the stone, slowly dissolving, cracking, and you may discoloring its epidermis over the decades. Our planet nevertheless holds their treasures and you can technical has just started to learn its ancient program.<\/p>\n

What exactly do Monarch Butterflies Represent and just how They Inspire Sales and Hope Latest artists consistently discuss the newest Sphinx\u2019s pictures, connecting the ancient symbolization to progressive layouts, such term and you will existence. Their eastward look stands for a connection in order to rebirth and the newest beginnings, then improving the protective character. The new Sphinx symbolizes multiple key signs you to definitely resonate around the countries and time periods. The fresh Sphinx stood since the a protector, watching along side tombs and you may making sure safe passage for the afterlife. Arranged around the Pyramids from Giza, it portrayed the new pharaoh\u2019s strength in addition to their character while the a mediator anywhere between gods and you will people.<\/p>\n

\"no<\/p>\n

The new symbol is actually to start with created to represent the fresh views the spot where the sunlight kits and a reflection of the Nile’s west bank which are where the new old Egyptian buried their dead. One of the most novel symbols in the ancient Egypt ‘s the Amenta and that represents the newest belongings of your own dead and the underground also known as Duat. The newest feather played a crucial role inside deciding the brand new fate of for each heart in the weigh of your own center on the hallway out of facts within the Duat. The brand new old Egyptians believed that the newest passing on the afterlife equaled the weight away from a good feather. The fresh Ka is simply the life force or soul offered by the new gods in order to humankind however it however remains separate in the person while the conscience which could lead one to the brand new path of righteousness. Kas away from royalty illustrated identity while you are that of the typical anyone are usually related.<\/p>\n

The fresh Sphinx and you may Religious Waking<\/h2>\n

Put on sunlight stop through your amount of time in casinolead.ca \u00ablink\u00bb<\/a> Egypt in the june to safeguard on your own regarding the sunshine. All of our group include a knowledgeable workers, books and you can motorists which purchase all their date & effort to get you to have the primary travel. Local plumber to journey to Egypt is within winter months away from September so you can April because the environment will get a tiny tropical followed by a magical surroundings out of warm weather which have a winter months snap.<\/p>\n

The fresh Egyptian Connection<\/h2>\n

Inside old Egypt, it portrayed the new pharaoh as the a great divine guardian. That it feel means another citation of daytime admission. The fresh viewing system also provides advanced angles to possess picture taking. An educated going to moments is morning (8-9 Have always been) otherwise late afternoon (3-cuatro PM). The new beard probably portrayed a later introduction to the brand-new sculpture.<\/p>\n

Therefore, that it backlinks they right to solar power worship and you may Egyptian rules from revival. In fact, sketches out of prior to Napoleon\u2019s go out currently inform you the new nose lost. And you can modern science is actually eventually learning not only to come across such layers of your energy but to learn her or him. Has one some provides regarding mythical concepts such as the Hall away from Information or the legendary world of Amenti the brand new Egyptian underworld away from information. Because the \u201cHorus regarding the Panorama,\u201d the newest Sphinx cannot merely depict royal power it symbolizes the fresh eternal resurgence away from light, providing while the a good sacred link between night and day, existence and you will afterlife. To check out the newest Sphinx would be to reach the brand new amazing moving out of mind and spirit, stone and you can spirit.<\/p>\n

\"no<\/p>\n

Without naturally stated, the fresh monster is likely that a great decadent kind of a good sphinx due to its looks and huge nature. Mcdougal James Thomson, much like Wilde, in addition to uses the brand new motif of one’s sphinx in his poem “The metropolis of Terrible Evening”. The fresh Decadent Course, a great Eu course that was attributed to the notion of “decadence” within the 1890s, implores the main notion of looking charm from the decline from civilization in the way of macabre otherwise taboo victims including the brand new sphinx. Such as sphinxes have been revived if grottesche or “grotesque” decoration of your own unearthed Domus Aurea away from Nero had been delivered to white inside late fifteenth-millennium Rome, and she is incorporated into the newest classical vocabulary of arabesque models you to definitely spread during the European countries in the engravings within the 16th and you will 17th ages. The newest revived Mannerist sphinx of your late fifteenth century is frequently looked at as the newest “French sphinx”. However, an excellent fringe fraction lately 20th 100 years geologists provides stated evidence away from drinking water erosion near the new Sphinx enclosure which would prove your Sphinx predates Khafre, at around 10,one hundred thousand in order to 5000 BC, a claim which is both known as the newest Sphinx h2o erosion theory however, which includes nothing assistance among Egyptologists and you can contradicts almost every other evidence.<\/p>\n

Exactly what can recreate the newest lifeless; leave you shout, leave you make fun of, make you more youthful; flow from right away, yet , continues a life<\/h2>\n

The origin of the symbol might be traced to a number away from connected tales including the date when he directs his eye since the a warm dad to search for his destroyed college students. It\u2019s a mix anywhere between a hawk’s eye and you can a human attention and it also have a tendency to will come in eco-friendly in order to portray resurrection, vegetation, training, and you may degree. The new Amulets of the eyes have been made from Silver, Lapis Lazuli & carnelian and you may were receive which have both deceased as well as the way of life.<\/p>\n

A reversed illustration of the mixture from creature and you will human provides takes place in after periods, in the way of the newest sphinx, where a human lead is positioned to your a pet system. Egyptologist Rosalie David cards how “there aren’t any extant literary offer and therefore put white on the possibly the newest predynastic practice of zoolatry otherwise anthropomorphism and that happened c. 3000-c. 2800 BCE. We could simply imagine regarding the things about these advancements” (53). Regarding the last 100 years, the newest Temples allege, the new statue is actually re-carved to help you depict a great lion having a good king’s direct while the lion try a greatest contour inside the zoolatry (the fresh worship of pet) at the time. Sculpture bought at Gobekli Tepe is really as advanced while the regarding the fresh Sphinx and often much more. This environment trend was not obvious at the time of your last Dynasty away from Egypt, so that the statue is unquestionably over the age of that period.<\/p>\n","protected":false},"excerpt":{"rendered":"

It is quite known as the battle crown since it is actually worn by kings of your own 18th dynasty of your […]<\/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-109683","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/urbanedge.co.in\/vrsi\/wp-json\/wp\/v2\/posts\/109683","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/urbanedge.co.in\/vrsi\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/urbanedge.co.in\/vrsi\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/urbanedge.co.in\/vrsi\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/urbanedge.co.in\/vrsi\/wp-json\/wp\/v2\/comments?post=109683"}],"version-history":[{"count":1,"href":"https:\/\/urbanedge.co.in\/vrsi\/wp-json\/wp\/v2\/posts\/109683\/revisions"}],"predecessor-version":[{"id":109684,"href":"https:\/\/urbanedge.co.in\/vrsi\/wp-json\/wp\/v2\/posts\/109683\/revisions\/109684"}],"wp:attachment":[{"href":"https:\/\/urbanedge.co.in\/vrsi\/wp-json\/wp\/v2\/media?parent=109683"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/urbanedge.co.in\/vrsi\/wp-json\/wp\/v2\/categories?post=109683"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/urbanedge.co.in\/vrsi\/wp-json\/wp\/v2\/tags?post=109683"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}