{"id":499,"date":"2023-10-21T16:03:04","date_gmt":"2023-10-21T16:03:04","guid":{"rendered":"https:\/\/wpshortcode.org\/?p=499"},"modified":"2023-10-21T16:03:05","modified_gmt":"2023-10-21T16:03:05","slug":"simple-tags","status":"publish","type":"post","link":"https:\/\/wpshortcode.org\/simple-tags\/","title":{"rendered":"Simple Tags Shortcodes"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Below, you&#8217;ll find a detailed guide on how to add the <strong>Simple Tags Shortcodes<\/strong> to your WordPress website, including their <strong>parameters<\/strong>, <strong>examples<\/strong>, and <strong>PHP function code<\/strong>. Additionally, we&#8217;ll assist you with common issues that might cause the Simple Tags Plugin shortcodes not to show or not to work correctly.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Before starting, here is an overview of the Simple Tags Plugin and the shortcodes it provides:<\/p>\n\n\n<p>    <div class=\"plugin-info-box\">\n        <div class=\"top-main\">\n            <!-- SVG Image -->\n            <div class=\"plugin-image\">\n                <img decoding=\"async\" src=\"https:\/\/ps.w.org\/simple-tags\/assets\/icon-128x128.png?rev=2853049\" alt=\"Plugin Icon\" \/>\n            <\/div>\n            \n            <div class=\"plugin-descriptive-part\">\n                <!-- Plugin Name with Link -->\n\n                    <a class=\"plugin-title\" href=\"https:\/\/wordpress.org\/plugins\/simple-tags\" target=\"_blank\" rel=\"noopener\">\n                        TaxoPress is the WordPress Tag, Category, and Taxonomy Manager                    <\/a>\n\n\n                <!-- Plugin Description -->\n                <p class=\"plugin-description\">\n                    &quot;TaxoPress is a comprehensive WordPress plugin for managing Tags, Categories, and Taxonomies. With its slug &#039;simple-tags&#039;, it simplifies taxonomy handling, enhancing your content organization.&quot;                <\/p>\n            <\/div>\n        <\/div>\n\n        <!-- Rating and Additional Info -->\n        <div class=\"plugin-meta\">\n            <span class=\"plugin-rating\">\n                <span class='stars'>\u2605\u2605\u2605\u2605\u2729<\/span> (144)\n            <\/span>\n            <span class=\"plugin-active-installs\">\n                <strong>Active Installs<\/strong>: 60000+\n            <\/span>\n            <span class=\"plugin-tested\">\n                <strong>Tested with<\/strong>: 6.3.2            <\/span>\n            <span class=\"plugin-php-version\">\n                <strong>PHP Version<\/strong>: 5.6            <\/span>\n        <\/div>\n\n        <!-- List of Included Shortcodes -->\n        <div class=\"plugin-shortcodes\">\n            <strong>Included Shortcodes:<\/strong>\n            <ul>\n                <li>[st-the-tags]<\/li><li>[taxopress_postterms]<\/li><li>[taxopress_relatedposts]<\/li><li>[taxopress_termsdisplay]<\/li>            <\/ul>\n        <\/div>\n    <\/div>\n    <\/p>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Simple Tags [st-the-tags] Shortcode<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The Simple Tags plugin shortcode, &#8216;st-the-tags&#8217;, is used to extend the post tags. It decodes HTML entities and trims the parameter. If the parameter is empty, it defaults to &#8216;title=&#8217;.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Shortcode<\/strong>: <code>[st-the-tags]<\/code><\/p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Parameters<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Here is a list of all possible st-the-tags shortcode parameters and attributes:<\/p>\n\n\n<ul>\n<li><code>param<\/code> &#8211; Defines custom settings for the post tags display<\/li>\n<\/ul>\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Examples and Usage<\/h3>\n\n\n<p><strong>Basic example<\/strong> &#8211; A simple shortcode usage to display the post tags. By default, it will display the title of the tags.<\/p>\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">[st-the-tags \/]<\/code><\/pre>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">PHP Function Code<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">In case you have difficulties debugging what causing issues with <code>[st-the-tags]<\/code> shortcode, check below the related PHP functions code.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Shortcode line<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">add_shortcode( 'st-the-tags', array( __CLASS__, 'shortcode' ) );<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Shortcode PHP function<\/strong>:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; light: false; title: ; toolbar: true; notranslate\" title=\"\">\nfunction shortcode( $atts ) {\n\t\t$atts = shortcode_atts( array( &#039;param&#039; =&gt; &#039;&#039; ), $atts );\n\t\textract( $atts );\n\n\t\t$param = html_entity_decode( $param );\n\t\t$param = trim( $param );\n\n\t\tif ( empty( $param ) ) {\n\t\t\t$param = &#039;title=&#039;;\n\t\t}\n\n\t\treturn self::extendedPostTags( $param );\n\t}\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\"><strong>Code file location<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">simple-tags\/simple-tags\/inc\/class.client.post_tags.php<\/code><\/pre>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Simple Tags [taxopress_postterms] Shortcode<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The TaxoPress PostTerms shortcode is used to retrieve and display post tags. It extracts the post ID, checks if it exists, and if so, outputs the associated post tags.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Shortcode<\/strong>: <code>[taxopress_postterms]<\/code><\/p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Parameters<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Here is a list of all possible taxopress_postterms shortcode parameters and attributes:<\/p>\n\n\n<ul>\n<li><code>id<\/code> &#8211; Unique identifier for the specific post terms<\/li>\n<\/ul>\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Examples and Usage<\/h3>\n\n\n<p><strong>Basic example<\/strong> &#8211; Displaying post tags by referencing the ID of the post.<\/p>\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">[taxopress_postterms id=1 \/]<\/code><\/pre>\n\n\n<p><strong>Advanced examples<\/strong><\/p>\n<p>Using the shortcode to display post tags by referencing multiple IDs. This will display the tags of the posts with the given IDs.<\/p>\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">[taxopress_postterms id=\"1,2,3\" \/]<\/code><\/pre>\n\n\n<p>Using the shortcode with no ID. This will display a message saying &#8220;Invalid post terms ID.&#8221;<\/p>\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">[taxopress_postterms \/]<\/code><\/pre>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">PHP Function Code<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">In case you have difficulties debugging what causing issues with <code>[taxopress_postterms]<\/code> shortcode, check below the related PHP functions code.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Shortcode line<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">add_shortcode('taxopress_postterms', 'taxopress_posttags_shortcode');<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Shortcode PHP function<\/strong>:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; light: false; title: ; toolbar: true; notranslate\" title=\"\">\nfunction taxopress_posttags_shortcode($atts)\n{\n    extract(shortcode_atts(&#91;\n        &#039;id&#039; =&gt; 0\n    ], $atts));\n\n    $posttags_id = $id;\n    $posttagss   = taxopress_get_posttags_data();\n\n    ob_start();\n    if (array_key_exists($posttags_id, $posttagss)) {\n        $posttags_arg = build_query($posttagss&#91;$posttags_id]);\n\n        \/\/ phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped\n        echo SimpleTags_Client_PostTags::extendedPostTags($posttags_arg);\n\n    } else {\n        \/\/ phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped\n        echo esc_html__(&#039;Invalid post terms ID.&#039;, &#039;simple-tags&#039;);\n    }\n\n    $html = ob_get_clean();\n\n    return $html;\n\n\n}\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\"><strong>Code file location<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">simple-tags\/simple-tags\/inc\/post-tags-action.php<\/code><\/pre>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Simple Tags [taxopress_relatedposts] Shortcode<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The &#8216;taxopress_relatedposts&#8217; shortcode from the Simple-Tags plugin is a tool to display related posts. It pulls related posts based on the ID provided in the shortcode.\n\n\n\nIf the ID exists, it generates a list of related posts. If not, it displays a message saying &#8216;Related Posts not found.&#8217; It&#8217;s an efficient way to engage readers with similar content.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Shortcode<\/strong>: <code>[taxopress_relatedposts]<\/code><\/p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Parameters<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Here is a list of all possible taxopress_relatedposts shortcode parameters and attributes:<\/p>\n\n\n<ul>\n<li><code>id<\/code> &#8211; The unique ID for the specific related post set.<\/li>\n<\/ul>\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Examples and Usage<\/h3>\n\n\n<p><strong>Basic example<\/strong> &#8211; Display related posts by referencing the ID of the related posts group.<\/p>\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">[taxopress_relatedposts id=1 \/]<\/code><\/pre>\n\n\n<p><strong>Advanced examples<\/strong><\/p>\n<p>Using the shortcode to display related posts by referencing the ID of the related posts group. If the ID is not found, it will display a message &#8216;Related Posts not found.&#8217;<\/p>\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">[taxopress_relatedposts id=5 \/]<\/code><\/pre>\n\n\n<p>If you want to display related posts from multiple groups, you can use multiple shortcodes in the same post or page. Here is an example of displaying related posts from group ID 1 and 2.<\/p>\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">[taxopress_relatedposts id=1 \/]\n[taxopress_relatedposts id=2 \/]<\/code><\/pre>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">PHP Function Code<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">In case you have difficulties debugging what causing issues with <code>[taxopress_relatedposts]<\/code> shortcode, check below the related PHP functions code.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Shortcode line<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">add_shortcode('taxopress_relatedposts', 'taxopress_relatedposts_shortcode');<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Shortcode PHP function<\/strong>:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; light: false; title: ; toolbar: true; notranslate\" title=\"\">\nfunction taxopress_relatedposts_shortcode($atts)\n{\n    extract(shortcode_atts(&#91;\n        &#039;id&#039; =&gt; 0\n    ], $atts));\n\n    $relatedpost_id = $id;\n    $relatedposts   = taxopress_get_relatedpost_data();\n\n    ob_start();\n    if (array_key_exists($relatedpost_id, $relatedposts)) {\n        $related_post_array = $relatedposts&#91;$relatedpost_id];\n        $relatedpost_arg    = build_query($related_post_array);\n\n        \/\/ phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped\n        echo SimpleTags_Client_RelatedPosts::get_related_posts($relatedpost_arg);\n\n    } else {\n        echo esc_html__(&#039;Related Posts not found.&#039;, &#039;simple-tags&#039;);\n    }\n    \n    $html = ob_get_clean();\n\n    return $html;\n\n\n}\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\"><strong>Code file location<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">simple-tags\/simple-tags\/inc\/related-posts-action.php<\/code><\/pre>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Simple Tags [taxopress_termsdisplay] Shortcode<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The TaxoPress TermsDisplay shortcode is a tool that creates a dynamic tag cloud. It extracts data from a specified &#8216;id&#8217; and uses it to generate a tag cloud.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Shortcode<\/strong>: <code>[taxopress_termsdisplay]<\/code><\/p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Parameters<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Here is a list of all possible taxopress_termsdisplay shortcode parameters and attributes:<\/p>\n\n\n<ul>\n<li><code>id<\/code> &#8211; A unique number assigned to each tag cloud<\/li>\n<\/ul>\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Examples and Usage<\/h3>\n\n\n<p><strong>Basic example<\/strong> &#8211; Displays the terms in a tag cloud format by referencing the ID.<\/p>\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">[taxopress_termsdisplay id=1 \/]<\/code><\/pre>\n\n\n<p><strong>Advanced examples<\/strong><\/p>\n<p>Display a specific number of terms in a tag cloud by setting the &#8216;max&#8217; attribute to the desired number. If the &#8216;max&#8217; attribute is not set, it will display all terms. The &#8216;color&#8217; attribute can be set to &#8216;true&#8217; or &#8216;false&#8217; to enable or disable term color coding, respectively.<\/p>\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">[taxopress_termsdisplay id=1 max=10 color=true \/]<\/code><\/pre>\n\n\n<p>Display a tag cloud with a specific number of terms and without color coding. This is achieved by setting the &#8216;max&#8217; attribute to the desired number and the &#8216;color&#8217; attribute to &#8216;false&#8217;.<\/p>\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">[taxopress_termsdisplay id=2 max=20 color=false \/]<\/code><\/pre>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">PHP Function Code<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">In case you have difficulties debugging what causing issues with <code>[taxopress_termsdisplay]<\/code> shortcode, check below the related PHP functions code.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Shortcode line<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">add_shortcode('taxopress_termsdisplay', 'taxopress_termsdisplay_shortcode');<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Shortcode PHP function<\/strong>:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; light: false; title: ; toolbar: true; notranslate\" title=\"\">\nfunction taxopress_termsdisplay_shortcode($atts)\n    {\n        extract(shortcode_atts(array(\n            &#039;id&#039; =&gt; 0\n        ), $atts));\n\n        $tagcloud_id = $id;\n        $tagclouds = taxopress_get_tagcloud_data();\n\n        ob_start();\n        if (array_key_exists($tagcloud_id, $tagclouds)) {\n            $tagclouds&#91;$tagcloud_id]&#91;&#039;number&#039;] = $tagclouds&#91;$tagcloud_id]&#91;&#039;max&#039;];\n            if (!isset($tagclouds&#91;$tagcloud_id]&#91;&#039;color&#039;])) {\n                $tagclouds&#91;$tagcloud_id]&#91;&#039;color&#039;] = &#039;false&#039;;\n            }\n            $tagcloud_arg = build_query($tagclouds&#91;$tagcloud_id]);\n            \/\/ phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped\n            echo SimpleTags_Client_TagCloud::extendedTagCloud( $tagcloud_arg );\n\n        }\n\n        $html = ob_get_clean();\n        return $html;\n\n\n    }\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\"><strong>Code file location<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">simple-tags\/simple-tags\/inc\/tag-clouds-action.php<\/code><\/pre>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Now that you&#8217;ve learned how to embed the <strong>Simple Tags Plugin shortcodes<\/strong>, understood the parameters, and seen code examples, it&#8217;s easy to use and debug any issue that might cause it to &#8216;not work&#8217;. If you still have difficulties with it, don&#8217;t hesitate to leave a comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Below, you&#8217;ll find a detailed guide on how to add the Simple Tags Shortcodes to your WordPress website, including their parameters, examples, and PHP function code. Additionally, we&#8217;ll assist you with common issues that might cause the Simple Tags Plugin shortcodes not to show or not to work correctly. Before starting, here is an overview [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"name":"TaxoPress is the WordPress Tag, Category, and Taxonomy Manager","slug":"","version":"3.10.2","author":"<a href=\"https:\/\/taxopress.com\">TaxoPress<\/a>","icons":"https:\/\/ps.w.org\/simple-tags\/assets\/icon-128x128.png?rev=2853049","plugin_tags":"{\"category\":\"category\",\"related-posts\":\"related posts\",\"tag\":\"tag\",\"tag-cloud\":\"tag cloud\",\"taxonomy\":\"taxonomy\"}","author_profile":"https:\/\/profiles.wordpress.org\/stevejburge\/","requires":"3.3","tested":"6.3.2","requires_php":"5.6","rating":90,"num_ratings":144,"active_installs":60000,"downloaded":4377668,"last_updated":"2023-09-26 1:36pm GMT","added":"2007-10-10","homepage":"https:\/\/wordpress.org\/plugins\/simple-tags\/","short_description":"TaxoPress enables you to manage Tags, Categories and all your WordPress taxonomy terms.","description":"\"TaxoPress is a comprehensive WordPress plugin for managing Tags, Categories, and Taxonomies. With its slug 'simple-tags', it simplifies taxonomy handling, enhancing your content organization.\"","shortcodes":"[\"st-the-tags\",\"taxopress_postterms\",\"taxopress_relatedposts\",\"taxopress_termsdisplay\"]","footnotes":""},"categories":[1],"tags":[],"class_list":["post-499","post","type-post","status-publish","format-standard","hentry","category-plugins"],"_links":{"self":[{"href":"https:\/\/wpshortcode.org\/wp-json\/wp\/v2\/posts\/499","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wpshortcode.org\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wpshortcode.org\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wpshortcode.org\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/wpshortcode.org\/wp-json\/wp\/v2\/comments?post=499"}],"version-history":[{"count":1,"href":"https:\/\/wpshortcode.org\/wp-json\/wp\/v2\/posts\/499\/revisions"}],"predecessor-version":[{"id":736,"href":"https:\/\/wpshortcode.org\/wp-json\/wp\/v2\/posts\/499\/revisions\/736"}],"wp:attachment":[{"href":"https:\/\/wpshortcode.org\/wp-json\/wp\/v2\/media?parent=499"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wpshortcode.org\/wp-json\/wp\/v2\/categories?post=499"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wpshortcode.org\/wp-json\/wp\/v2\/tags?post=499"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}