{"id":1964839,"date":"2025-04-07T11:55:38","date_gmt":"2025-04-07T15:55:38","guid":{"rendered":"https:\/\/theeventscalendar.com\/knowledgebase\/?p=1964839"},"modified":"2026-04-21T23:45:22","modified_gmt":"2026-04-22T03:45:22","slug":"how-to-display-additional-fields-individually-when-using-elementor-on-single-events","status":"publish","type":"post","link":"https:\/\/theeventscalendar.com\/knowledgebase\/how-to-display-additional-fields-individually-when-using-elementor-on-single-events\/","title":{"rendered":"Customizing Event Data in Elementor"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\" id=\"h-display-specific-additional-fields-using-shortcodes\">Display Specific Additional Fields Using Shortcodes<\/h2>\n\n\n\n<p>Our Elementor Additional Fields widget will show all the additional fields for an event in one block. You may want to display only certain Additional Fields on an event, or display them in different areas. This guide will help you achieve just that. By using this custom code snippet, you will be able to display the event\u2019s Additional Fields by using a shortcode. Here are step-by-step instructions on how to do this.<\/p>\n\n\n\n<p>While this guide is specific for Elementor, the code will create a shortcode that you can use anywhere on the site where there is a single event even without Elementor.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-step-1-add-the-shortcode-code-to-your-site\">Step 1: Add The Shortcode Code To Your Site<\/h3>\n\n\n\n<p>Before you can use the shortcode in Elementor, you\u2019ll need to add the code to your website. Follow these steps:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Log in to WordPress.<\/li>\n\n\n\n<li>Go to your Theme\u2019s <code>functions.php<\/code> file: From the WordPress dashboard, navigate to <strong>Appearance &gt; Theme Editor<\/strong>.<\/li>\n\n\n\n<li>On the right, find and select the <code>functions.php<\/code> file.<\/li>\n\n\n\n<li>Add the code: Copy the provided PHP code below and paste it at the end of your <code>functions.php<\/code> file.<\/li>\n<\/ol>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>Note:<\/strong> Additionally, you can read our Using Custom Code Snippets for a more detailed explanation of this.<\/p>\n<\/blockquote>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n\/\/ Define the shortcode\nfunction custom_event_custom_fields_shortcode( $atts ) {\n    \/\/ Get the current event ID\n    $post_id = get_the_ID();\n\n    \/\/ Get the custom fields for the event\n    $custom_fields = tribe_get_custom_fields( $post_id );\n\n    \/\/ Get custom field name from the shortcode attribute\n    $atts = shortcode_atts(\n        array(\n            &#039;field&#039; =&gt; &#039;&#039;, \/\/ Default is empty\n        ),\n        $atts\n    );\n\n    \/\/ Initialize the output string\n    $output = &#039;&#039;;\n\n    \/\/ Check if the custom field exists based on the attribute &#039;field&#039;\n    if ( ! empty( $atts&#x5B;&#039;field&#039;] ) &amp;&amp; isset( $custom_fields&#x5B;$atts&#x5B;&#039;field&#039;]] ) ) {\n        $output .= &#039;&lt;div class=&quot;custom-field-section&quot;&gt;&#039;;\n        $output .= &#039;&lt;h3&gt;&#039; . esc_html( $atts&#x5B;&#039;field&#039;] ) . &#039;&lt;\/h3&gt;&#039;;\n        $output .= &#039;&lt;p&gt;&#039; . esc_html( $custom_fields&#x5B;$atts&#x5B;&#039;field&#039;]] ) . &#039;&lt;\/p&gt;&#039;;\n        $output .= &#039;&lt;\/div&gt;&#039;;\n    }\n\n    \/\/ Return the output\n    return $output;\n}\n\n\/\/ Register the shortcode\nadd_shortcode( &#039;event_custom_fields&#039;, &#039;custom_event_custom_fields_shortcode&#039; );\n\n<\/pre><\/div>\n\n\n<ol start=\"5\" class=\"wp-block-list\">\n<li>Save the changes to the <code>functions.php<\/code> file.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-step-2-add-the-shortcode-in-elementor\">Step 2: Add The Shortcode In Elementor<\/h3>\n\n\n\n<p>Now that the shortcode is set up, you can easily display custom fields on any Elementor page. Follow these steps:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Edit the Page in Elementor:<\/strong> Go to the page or post where you want to display the custom field in Elementor.<\/li>\n\n\n\n<li><strong>Add the Shortcode Widget:<\/strong> Drag the <strong>Shortcode<\/strong> widget into the section where you want the custom field to appear.<\/li>\n\n\n\n<li><strong>Insert the Shortcode:<\/strong> In the Shortcode widget, type the following shortcode: <code>[event_custom_fields field=\"Custom Field\"]<\/code><\/li>\n\n\n\n<li>Replace <em>&#8220;Custom Field&#8221;<\/em> with the <strong>exact name<\/strong> of the custom field you want to display (e.g., <em>&#8220;Event Website&#8221;<\/em> or <em>&#8220;Location&#8221;<\/em>). You can find this by going to <strong>Events &gt; Settings &gt; Additional Fields<\/strong> and checking the label there. Whatever you named it there, is a custom field name that needs to be replaced.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-step-3-customize-and-display-multiple-fields\">Step 3: Customize And Display Multiple Fields<\/h3>\n\n\n\n<p>You can add multiple shortcodes on the same page to display different custom fields. Just copy the shortcode widget and change the <code>field<\/code> attribute to the name of the custom field you want to display. For example, to display a field called \u201cDress Code\u201d you can use <code>[event_custom_fields field=\"Dress Code\"]<\/code> or to display a field called Parking, use <code>[event_custom_fields field=\"Parking\"]<\/code> (these are just examples, you can use whatever field name you need).<\/p>\n\n\n\n<p>Here\u2019s an example of me using it on my site with a field called \u201cUnique Value\u201d: <em>(Visual Example\/Screenshot normally appears here)<\/em><\/p>\n\n\n\n<p>And this is what it looks like: <em>(Visual Example\/Screenshot normally appears here)<\/em><\/p>\n\n\n\n<p>If you don\u2019t like how it looks, and you\u2019re comfortable with HTML \u2013 you can change what is outputted in this function:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n    \/\/ Check if the custom field exists based on the attribute &#039;field&#039;\n    if ( ! empty( $atts&#x5B;&#039;field&#039;] ) &amp;&amp; isset( $custom_fields&#x5B;$atts&#x5B;&#039;field&#039;]] ) ) {\n        $output .= &#039;&lt;div class=&quot;custom-field-section&quot;&gt;&#039;;\n        $output .= &#039;&lt;h3&gt;&#039; . esc_html( $atts&#x5B;&#039;field&#039;] ) . &#039;&lt;\/h3&gt;&#039;;\n        $output .= &#039;&lt;p&gt;&#039; . esc_html( $custom_fields&#x5B;$atts&#x5B;&#039;field&#039;]] ) . &#039;&lt;\/p&gt;&#039;;\n        $output .= &#039;&lt;\/div&gt;&#039;;\n    }\n\n<\/pre><\/div>\n\n\n<h2 class=\"wp-block-heading\" id=\"h-integrating-event-tickets-with-elementor-crafting-custom-ticket-layouts\">Integrating Event Tickets With Elementor: Crafting Custom Ticket Layouts<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-enhancing-your-wordpress-event-pages-with-custom-ticket-layouts-can-significantly-improve-user-experience-and-boost-ticket-sales-by-integrating-event-tickets-plus-plugin-with-elementor-you-can-design-visually-appealing-and-functional-ticket-sections-without-delving-into-code-this-guide-will-walk-you-through-the-process-of-creating-custom-ticket-layouts-using-elementor\">Enhancing your WordPress event pages with custom ticket layouts can significantly improve user experience and boost ticket sales. By integrating Event Tickets Plus plugin with Elementor, you can design visually appealing and functional ticket sections without delving into code. This guide will walk you through the process of creating custom ticket layouts using Elementor.<\/h3>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-prerequisites\">Prerequisites<\/h2>\n\n\n\n<p>Before you begin, ensure you have the following plugins activated:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>The Events Calendar<\/strong><\/li>\n\n\n\n<li><strong>Event Tickets<\/strong><\/li>\n\n\n\n<li><strong>Event Tickets Plus<\/strong><\/li>\n\n\n\n<li><strong>Elementor<\/strong> or <strong>Elementor Pro<\/strong><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-1-create-an-event-and-add-tickets\">1. <strong>Create an Event and Add Tickets<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Navigate to your WordPress dashboard.<\/li>\n\n\n\n<li>Go to <strong>Events &gt; Add New<\/strong> to create a new event.<\/li>\n\n\n\n<li>Fill in the event details such as title, description, date, and time.<\/li>\n\n\n\n<li>Scroll down to the <strong>Tickets<\/strong> section and click on <strong>+ New Ticket<\/strong>.<\/li>\n\n\n\n<li>Enter ticket details like name, price, stock, and sale dates.<\/li>\n\n\n\n<li>Click <strong>Save Ticket<\/strong> to add it to your event.<\/li>\n<\/ul>\n\n\n\n<p>Review <a href=\"https:\/\/theeventscalendar.com\/knowledgebase\/making-tickets\/\" target=\"_blank\" rel=\"noreferrer noopener\">Creating Tickets<\/a> article for further information.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-2-enable-elementor-for-events\">2. <strong>Enable Elementor for Events<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Go to <strong>Elementor &gt; Settings<\/strong>.<\/li>\n\n\n\n<li>Under the <strong>General<\/strong> tab, check the box for <strong>Events<\/strong> to enable Elementor editing for event post types.<\/li>\n\n\n\n<li>Click <strong>Save Changes<\/strong>.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1884\" height=\"806\" src=\"https:\/\/images.theeventscalendar.com\/kb\/uploads\/2025\/05\/Image-2025-07-09-at-4.02.31-PM.png\" alt=\"\" class=\"wp-image-1965989\" srcset=\"https:\/\/images.theeventscalendar.com\/kb\/uploads\/2025\/05\/Image-2025-07-09-at-4.02.31-PM.png 1884w, https:\/\/images.theeventscalendar.com\/kb\/uploads\/2025\/05\/Image-2025-07-09-at-4.02.31-PM-300x128.png 300w, https:\/\/images.theeventscalendar.com\/kb\/uploads\/2025\/05\/Image-2025-07-09-at-4.02.31-PM-1024x438.png 1024w, https:\/\/images.theeventscalendar.com\/kb\/uploads\/2025\/05\/Image-2025-07-09-at-4.02.31-PM-768x329.png 768w, https:\/\/images.theeventscalendar.com\/kb\/uploads\/2025\/05\/Image-2025-07-09-at-4.02.31-PM-1536x657.png 1536w\" sizes=\"auto, (max-width: 1884px) 100vw, 1884px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-3-design-the-event-page-with-elementor\">3. <strong>Design the Event Page with Elementor<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Navigate to <strong>Events &gt; All Events<\/strong> and select the event you created.<\/li>\n\n\n\n<li>Click on <strong>Edit with Elementor<\/strong> to open the Elementor editor.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1402\" height=\"807\" src=\"https:\/\/images.theeventscalendar.com\/kb\/uploads\/2025\/07\/Image-2025-07-09-at-4.10.46-PM.png\" alt=\"\" class=\"wp-image-1965991\" srcset=\"https:\/\/images.theeventscalendar.com\/kb\/uploads\/2025\/07\/Image-2025-07-09-at-4.10.46-PM.png 1402w, https:\/\/images.theeventscalendar.com\/kb\/uploads\/2025\/07\/Image-2025-07-09-at-4.10.46-PM-300x173.png 300w, https:\/\/images.theeventscalendar.com\/kb\/uploads\/2025\/07\/Image-2025-07-09-at-4.10.46-PM-1024x589.png 1024w, https:\/\/images.theeventscalendar.com\/kb\/uploads\/2025\/07\/Image-2025-07-09-at-4.10.46-PM-768x442.png 768w\" sizes=\"auto, (max-width: 1402px) 100vw, 1402px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use Elementor widgets to design your event page layout, including headings, images, and descriptions.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-4-add-the-event-tickets-widget\">4. <strong>Add the Event Tickets Widget<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>In the Elementor editor, search for the <span style=\"text-decoration: underline;\"><a href=\"https:\/\/theeventscalendar.com\/knowledgebase\/native-elementor-widgets-for-event-tickets-plus\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Event Tickets<\/strong> widget<\/a><\/span> in the sidebar.<\/li>\n\n\n\n<li>Drag and drop the widget into your desired section on the page.<\/li>\n\n\n\n<li>Configure the widget settings to display the ticket form appropriately.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1626\" height=\"720\" src=\"https:\/\/images.theeventscalendar.com\/kb\/uploads\/2025\/07\/Screen-Recording-2025-07-09-at-04.07.36.42-PM.gif\" alt=\"\" class=\"wp-image-1965990\"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-5-customize-the-ticket-layout\">5. <strong>Customize the Ticket Layout<\/strong><\/h2>\n\n\n\n<p>Once satisfied with the design, click <strong>Publish<\/strong> to make the event page live with your custom ticket layout.<\/p>\n\n\n\n<p>Use Elementor&#8217;s styling options to customize the appearance of the ticket section. Extend the customization by using <a href=\"https:\/\/theeventscalendar.com\/knowledgebase\/customizing-css\/\" target=\"_blank\" rel=\"noreferrer noopener\">custom CSS<\/a>.<\/p>\n\n\n\n<p>Adjust typography, colors, spacing, and other design elements to match your site&#8217;s branding.<\/p>\n\n\n\n<p>Preview the changes to ensure the ticket layout is visually appealing and functional.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-display-only-the-next-upcoming-recurring-event-in-elementor-loop-grid-widget\">Display Only The Next Upcoming Recurring Event In Elementor Loop Grid Widget<\/h2>\n\n\n\n<p>In Elementor, when using Loop Grid or the Loop Carousel Widget to show an event that is set to recurring, the widget shows all the instances of that event. To only show the next upcoming event and to remove recurring events from the Loop Grid or the Loop Carousel Widget, the below PHP snippet is helpful:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n&lt;?php\nfunction hide_subsequent_recurrences($query) {\n    $query-&gt;set(&quot;hide_subsequent_recurrences&quot;, true);\n}\n\nadd_action(&quot;elementor\/query\/hide_subsequent_recurrences&quot;, &quot;hide_subsequent_recurrences&quot;);\n\n<\/pre><\/div>\n\n\n<h3 class=\"wp-block-heading\" id=\"h-adding-the-code\">Adding The Code<\/h3>\n\n\n\n<p>You can add the above code snippet directly to your theme\u2019s or child theme\u2019s <code>functions.php<\/code> file. If you\u2019re not comfortable editing your theme\u2019s <code>functions.php<\/code> file, you can use the Code Snippets plugin to safely add custom code without directly modifying theme files.<\/p>\n\n\n\n<p>Here\u2019s how:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Install and activate the Code Snippets plugin from the WordPress repository or directly download the plugin here: https:\/\/wordpress.org\/plugins\/code-snippets\/<\/li>\n\n\n\n<li>Go to <strong>Snippets &gt; Add New<\/strong> in your WordPress dashboard.<\/li>\n\n\n\n<li>Copy and paste the code snippet above into the code editor.<\/li>\n\n\n\n<li>Name your snippet (e.g., \u201cRemove Recurring Events Loop Grid\u201d) and click <strong>Save and Activate<\/strong>.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-configuring-the-widget\">Configuring The Widget<\/h3>\n\n\n\n<p>Add the below to the <strong>Query ID<\/strong> of the widget: <code>hide_subsequent_recurrences<\/code><\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"538\" height=\"1024\" src=\"https:\/\/images.theeventscalendar.com\/kb\/uploads\/2025\/12\/Elementor-Query-ID-538x1024.jpg\" alt=\"Elementor Query ID\" class=\"wp-image-1967730\" style=\"width:374px;height:auto\" srcset=\"https:\/\/images.theeventscalendar.com\/kb\/uploads\/2025\/12\/Elementor-Query-ID-538x1024.jpg 538w, https:\/\/images.theeventscalendar.com\/kb\/uploads\/2025\/12\/Elementor-Query-ID-158x300.jpg 158w, https:\/\/images.theeventscalendar.com\/kb\/uploads\/2025\/12\/Elementor-Query-ID-768x1462.jpg 768w, https:\/\/images.theeventscalendar.com\/kb\/uploads\/2025\/12\/Elementor-Query-ID-807x1536.jpg 807w, https:\/\/images.theeventscalendar.com\/kb\/uploads\/2025\/12\/Elementor-Query-ID.jpg 895w\" sizes=\"auto, (max-width: 538px) 100vw, 538px\" \/><\/figure><\/div>\n\n\n<p>That\u2019s it! Now, only the next upcoming recurring event will display in the Elementor\u2019s Loop Grid or Loop Carousel Widget.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Display Specific Additional Fields Using Shortcodes Our Elementor Additional Fields widget will show all the additional fields for an event in one block. You may want to display only certain Additional Fields on an event, or display them in different areas. This guide will help you achieve just that. By using this custom code snippet,&#8230;<\/p>\n","protected":false},"author":71,"featured_media":1955565,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_kad_blocks_custom_css":"","_kad_blocks_head_custom_js":"","_kad_blocks_body_custom_js":"","_kad_blocks_footer_custom_js":"","_swpsp_post_exclude":false,"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"ep_exclude_from_search":false,"footnotes":""},"categories":[314,24,313,59],"tags":[],"stellar-product-taxonomy":[158],"class_list":["post-1964839","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-additional-fields","category-customizing","category-elementor","category-php-function-snippets","stellar-product-taxonomy-events-calendar-pro"],"acf":[],"taxonomy_info":{"category":[{"value":314,"label":"Additional Fields"},{"value":24,"label":"Customizations"},{"value":313,"label":"Elementor"},{"value":59,"label":"PHP Functions &amp; Snippets"}],"stellar-product-taxonomy":[{"value":158,"label":"Events Calendar Pro"}]},"featured_image_src_large":["https:\/\/images.theeventscalendar.com\/kb\/uploads\/2023\/02\/social-share-1024x538.png",1024,538,true],"author_info":{"display_name":"Luan Luta","author_link":"https:\/\/theeventscalendar.com\/knowledgebase\/author\/luanluta\/"},"comment_info":0,"category_info":[{"term_id":314,"name":"Additional Fields","slug":"additional-fields","term_group":0,"term_taxonomy_id":314,"taxonomy":"category","description":"","parent":61,"count":1,"filter":"raw","term_order":"0","cat_ID":314,"category_count":1,"category_description":"","cat_name":"Additional Fields","category_nicename":"additional-fields","category_parent":61},{"term_id":24,"name":"Customizations","slug":"customizing","term_group":0,"term_taxonomy_id":24,"taxonomy":"category","description":"","parent":0,"count":40,"filter":"raw","term_order":"0","cat_ID":24,"category_count":40,"category_description":"","cat_name":"Customizations","category_nicename":"customizing","category_parent":0},{"term_id":313,"name":"Elementor","slug":"elementor","term_group":0,"term_taxonomy_id":313,"taxonomy":"category","description":"","parent":46,"count":3,"filter":"raw","term_order":"0","cat_ID":313,"category_count":3,"category_description":"","cat_name":"Elementor","category_nicename":"elementor","category_parent":46},{"term_id":59,"name":"PHP Functions &amp; Snippets","slug":"php-function-snippets","term_group":0,"term_taxonomy_id":59,"taxonomy":"category","description":"","parent":24,"count":32,"filter":"raw","term_order":"0","cat_ID":59,"category_count":32,"category_description":"","cat_name":"PHP Functions &amp; Snippets","category_nicename":"php-function-snippets","category_parent":24}],"tag_info":false,"_links":{"self":[{"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/posts\/1964839","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/users\/71"}],"replies":[{"embeddable":true,"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/comments?post=1964839"}],"version-history":[{"count":10,"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/posts\/1964839\/revisions"}],"predecessor-version":[{"id":1969993,"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/posts\/1964839\/revisions\/1969993"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/media\/1955565"}],"wp:attachment":[{"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/media?parent=1964839"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/categories?post=1964839"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/tags?post=1964839"},{"taxonomy":"stellar-product-taxonomy","embeddable":true,"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/stellar-product-taxonomy?post=1964839"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}