{"id":18662,"date":"2026-03-10T09:46:28","date_gmt":"2026-03-10T04:16:28","guid":{"rendered":"https:\/\/www.youstable.com\/blog\/?p=18662"},"modified":"2026-03-10T09:46:30","modified_gmt":"2026-03-10T04:16:30","slug":"sticky-post-in-wordpress","status":"publish","type":"post","link":"https:\/\/www.youstable.com\/blog\/sticky-post-in-wordpress","title":{"rendered":"What is a Sticky Post in WordPress in 2026"},"content":{"rendered":"\n<p><strong>A sticky post in WordPress is<\/strong> a regular blog post you pin to the top of your Posts page so it stays above newer entries. It\u2019s perfect for announcements, offers, or cornerstone guides. Enable it in the editor; by default it appears first on the blog index unless a theme or custom query ignores stickies.<\/p>\n\n\n\n<p>If you\u2019re wondering what is a sticky post in WordPress, think of it as your site\u2019s \u201cpinned\u201d update. It keeps high priority content visible at the top of your blog roll, driving clicks to the pages that matter most. Below, you\u2019ll learn exactly how sticky posts work, when to use them, and how to implement them like a pro.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"what-is-a-sticky-post-in-wordpress\">What is a Sticky Post in WordPress?<\/h2>\n\n\n\n<p><strong>A sticky post is<\/strong> a built in WordPress feature that lets you \u201cpin\u201d a post to the top of your blog index (the Posts page) so it appears before newer posts. WordPress treats it as a normal post in every other way, same URL, categories, tags, and date, but overrides the default date order on the main blog page to highlight it.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1280\" height=\"720\" src=\"https:\/\/www.youstable.com\/blog\/wp-content\/uploads\/2026\/02\/What-is-a-Sticky-Post-in-WordPress.jpg\" alt=\"Sticky Post in WordPress\" class=\"wp-image-18746\" srcset=\"https:\/\/www.youstable.com\/blog\/wp-content\/uploads\/2026\/02\/What-is-a-Sticky-Post-in-WordPress.jpg 1280w, https:\/\/www.youstable.com\/blog\/wp-content\/uploads\/2026\/02\/What-is-a-Sticky-Post-in-WordPress-150x84.jpg 150w\" sizes=\"auto, (max-width: 1280px) 100vw, 1280px\" \/><\/figure>\n\n\n\n<p><strong>Sticky posts are best for<\/strong> evergreen content, site wide announcements, time sensitive promos, or onboarding content. They are different from \u201cPages,\u201d which are timeless by design, and from \u201cfeatured\u201d posts, which are theme dependent labels or layouts. Stickies are core WordPress, theme agnostic, and easy to toggle on or off.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"why-and-when-to-use-sticky-posts\">Why and When to Use Sticky Posts<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Highlight cornerstone content:<\/strong> Keep your most helpful guide, pricing explainer, or \u201cStart Here\u201d post front and center.<\/li>\n\n\n\n<li><strong>Drive conversions:<\/strong> Pin your latest promo, lead magnet, or limited time discount.<\/li>\n\n\n\n<li><strong>Announce updates:<\/strong> Product releases, policy changes, or platform news.<\/li>\n\n\n\n<li><strong>Onboarding:<\/strong> A welcome post that directs readers to your best resources.<\/li>\n\n\n\n<li><strong>Compliance or safety:<\/strong> For adult creators, pin content guidelines, age verification info, or terms to reduce risk and support moderation.<\/li>\n<\/ul>\n\n\n\n<p>Used well, a sticky post can improve session depth, guide readers to conversion pages, and keep seasonal content discoverable without republishing or changing dates.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"how-to-create-a-sticky-post-step-by-step\">How to Create a Sticky Post (Step by Step)<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"gutenberg-block-editor\">Gutenberg\/Block Editor<\/h3>\n\n\n\n<p>From your Dashboard, go to Posts &gt; Add New (or edit an existing post). In the post editor, open the Settings sidebar (gear icon), expand the Summary\/Status &amp; visibility panel, and check the option \u201cStick to the top of the blog.\u201d Publish or Update. Your post will now appear at the top of the Posts page.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"classic-editor\">Classic Editor<\/h3>\n\n\n\n<p>Edit the post, locate the Publish meta box, click \u201cVisibility: Public &gt; Edit,\u201d check \u201cStick this post to the front page,\u201d then click OK and Update.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"quick-edit-fast-method\">Quick Edit (Fast Method)<\/h3>\n\n\n\n<p>Go to Posts &gt; All Posts. Hover over the post title, click Quick Edit, tick \u201cMake this post sticky,\u201d then Update. This is ideal when pinning multiple posts at once.<\/p>\n\n\n\n<p><strong>Note:<\/strong> By default, stickies float to the top of your main blog page (the Posts page). Most themes do not automatically pin them to the top of category\/tag archives or custom loops unless those templates honor stickies.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"how-sticky-posts-work-under-the-hood\">How Sticky Posts Work Under the Hood<\/h2>\n\n\n\n<p>WordPress stores sticky post IDs in a core option called sticky_posts. On the blog index, the main WP_Query gives those IDs priority, placing them before non sticky posts regardless of publish date. Developers can include or ignore stickies in custom queries with arguments like ignore_sticky_posts or post__in.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ Get all sticky post IDs\n$sticky_ids = get_option( 'sticky_posts' ); \/\/ array of post IDs\n\n\/\/ Main query typically respects stickies on home\/blog index.\n\/\/ In a custom query, you can:\n\/\/ 1) Show only sticky posts\n$q = new WP_Query(&#91;\n  'post__in'            =&gt; $sticky_ids,\n  'ignore_sticky_posts' =&gt; 1,\n  'orderby'             =&gt; 'post__in'\n]);\n\n\/\/ 2) Exclude sticky behavior (treat as normal posts)\n$q = new WP_Query(&#91;\n  'ignore_sticky_posts' =&gt; 1\n]);\n\n\/\/ 3) Push stickies first, then fill with latest posts\n$q = new WP_Query(&#91;\n  'post__in'            =&gt; $sticky_ids,\n  'posts_per_page'      =&gt; 10,\n  'ignore_sticky_posts' =&gt; 1,\n  'orderby'             =&gt; 'post__in date'\n]);<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"programmatically-pin-or-unpin-posts\">Programmatically Pin or Unpin Posts<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"pin-a-post-by-id\">Pin a Post by ID<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ Pin post ID 123\n$stickies   = get_option( 'sticky_posts', &#91;] );\n$stickies&#91;] = 123;\n$stickies   = array_values( array_unique( array_map( 'intval', $stickies ) ) );\nupdate_option( 'sticky_posts', $stickies );<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"unpin-a-post-by-id\">Unpin a Post by ID<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ Unpin post ID 123\n$stickies = get_option( 'sticky_posts', &#91;] );\n$stickies = array_diff( $stickies, &#91;123] );\nupdate_option( 'sticky_posts', array_values( $stickies ) );<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"styling-and-labeling-sticky-posts\">Styling and Labeling Sticky Posts<\/h2>\n\n\n\n<p>Most <a href=\"https:\/\/www.youstable.com\/blog\/choosing-perfect-theme\">themes<\/a> add a .sticky class to pinned posts. You can target it with CSS to add a badge or highlight. Keep your styling subtle, accessible, and consistent with your brand.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/* Highlight sticky posts *\/\n.sticky {\n  background: #fff9e6;\n  border-left: 4px solid #f0b429;\n  padding: 1rem;\n}\n\n\/* Optional badge for titles in archives *\/\n.sticky .entry-title::before {\n  content: \"Featured\";\n  font-size: 12px;\n  color: #b07219;\n  background: #fff1cc;\n  border: 1px solid #f0b429;\n  padding: 2px 6px;\n  margin-right: 8px;\n  border-radius: 3px;\n}<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"seo-impact-and-best-practices\">SEO Impact and Best Practices<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Match search intent: <\/strong>Pin evergreen resources that answer your audience\u2019s core questions.<\/li>\n\n\n\n<li><strong>Avoid pinning thin or time expired posts:<\/strong> Outdated promos or news can hurt trust and CTR.<\/li>\n\n\n\n<li><strong>Don\u2019t overuse:<\/strong> One sticky is great; two or three max. Too many stickies bury fresh content.<\/li>\n\n\n\n<li><strong>Refresh strategically: <\/strong>Update the sticky with new facts, screenshots, or CTAs to maintain freshness signals.<\/li>\n\n\n\n<li><strong>Use internal links: <\/strong>From the sticky, link to deeper content hubs to boost crawlability and distribute PageRank.<\/li>\n\n\n\n<li><strong>Monitor engagement: <\/strong>Track CTR and dwell time; if numbers dip, test a different sticky topic or headline.<\/li>\n<\/ul>\n\n\n\n<p>Sticky posts don\u2019t inherently boost rankings, but they can improve user engagement and guide crawlers toward your most valuable content. That combination supports overall site quality, something modern Google updates reward.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"common-issues-and-troubleshooting\">Common Issues and Troubleshooting<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"my-sticky-post-isnt-on-top\">\u201cMy sticky post isn\u2019t on top.\u201d<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Check you\u2019re viewing the Posts page, not a static homepage. Sticky behavior applies to the blog index by default.<\/li>\n\n\n\n<li>Confirm your theme\/template doesn\u2019t use a custom WP_Query with ignore_sticky_posts =&gt; 1.<\/li>\n\n\n\n<li>Ensure the post is published and public (not scheduled, private, or password, protected).<\/li>\n\n\n\n<li><a href=\"https:\/\/www.youstable.com\/blog\/how-to-clear-cache-in-browser\">Clear caches<\/a> (plugin, CDN, server) and regenerate your theme cache if applicable.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"my-homepage-is-static-can-i-still-show-stickies\">\u201cMy homepage is static can I still show stickies?\u201d<\/h3>\n\n\n\n<p>Yes. If your homepage is a static Page, add a Query Loop block or custom loop in your template that pulls sticky_posts first. Otherwise, stickies won\u2019t surface automatically on a static front page.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"pagination-or-duplicates\">Pagination or duplicates<\/h3>\n\n\n\n<p>Some themes show stickies on page 1 and again later in the list. Fix this by setting ignore_sticky_posts to 1 in subsequent queries or by excluding post__not_in =&gt; get_option(&#8216;sticky_posts&#8217;) in paginated loops.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"sticky-not-showing-on-category-pages\">Sticky not showing on category pages<\/h3>\n\n\n\n<p>By default, WordPress does not float stickies on category\/tag archives. Customize those templates (or the Query Loop block) to include sticky IDs and orderby post__in if you want them prioritized there.<\/p>\n\n\n\n<p class=\"has-background\" style=\"background-color:#eaeaea\"><strong>Read: <a href=\"https:\/\/www.youstable.com\/blog\/how-to-add-schema-markup-in-wordpress\">How to Add Schema Markup in WordPress<\/a><\/strong><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"real-world-use-cases-including-adult-and-creator-sites\">Real World Use Cases (Including Adult and Creator Sites)<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Creators and OnlyFans promoters: <\/strong>Pin a \u201cNew here? Start with this bundle\u201d post linking to your latest offers and FAQ.<\/li>\n\n\n\n<li><strong>Adult industry blogs: <\/strong>Keep compliance statements, content policies, or verification guides pinned for transparency.<\/li>\n\n\n\n<li><strong>Ecommerce: <\/strong>Pin seasonal deals, shipping updates, or return policies during peak sales.<\/li>\n\n\n\n<li><strong>Agencies and SaaS: <\/strong>Feature a \u201cHow to get support\u201d or \u201cProduct tour\u201d post that funnels users into trials or demos.<\/li>\n\n\n\n<li><strong>Publishing: <\/strong>Highlight your editorial calendar, submission guidelines, or a \u201cBest of\u201d roundup.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"pro-tips-for-managing-sticky-posts-at-scale\">Pro Tips for Managing Sticky Posts at Scale<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use one primary sticky plus a clear CTA. Rotate monthly or quarterly to align with campaigns.<\/li>\n\n\n\n<li>Create a \u201cFeatured\u201d category and ensure the sticky belongs to it for easier tracking and reporting.<\/li>\n\n\n\n<li><strong>Align with site navigation: <\/strong>Mirror the sticky\u2019s CTA in your top menu or hero section.<\/li>\n\n\n\n<li><strong>Measure impact: <\/strong>Tag links with UTM parameters; watch changes in revenue, sign, ups, or paid subscriber growth.<\/li>\n\n\n\n<li><strong>Editorial hygiene: <\/strong>When unpinning, update the post title and intro if it\u2019s no longer evergreen.<\/li>\n<\/ul>\n\n\n\n<p class=\"has-background\" style=\"background-color:#eaeaea\"><strong>Read Also:<\/strong> <a href=\"https:\/\/www.youstable.com\/blog\/optimizing-wordpress-loading-speed\">Optimizing WordPress Loading Speed Without Using Plugins<\/a><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"faqs\">FAQs<\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1770873467345\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"what-is-a-sticky-post-in-wordpress-and-how-is-it-different-from-a-featured-post\">What is a sticky post in WordPress, and how is it different from a featured post?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>A sticky post is a core WordPress function that pins a post to the top of your blog index. A \u201cfeatured\u201d post is theme dependent styling or a custom query label. Some themes treat stickies as featured, but the sticky mechanism itself is universal and built into WordPress.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1770873507276\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"does-using-sticky-posts-affect-seo-or-rankings\">Does using sticky posts affect SEO or rankings?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Indirectly. Stickies can improve UX, internal linking, and engagement signals that support overall site quality. They don\u2019t add a ranking boost by themselves, so pin content that satisfies core search intent and keep it updated for freshness.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1770873515527\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"can-i-make-pages-sticky-or-only-posts\">Can I make pages sticky, or only posts?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Sticky is a post only feature. To \u201cpin\u201d a Page on your homepage, use your theme\u2019s builder, the Site Editor\u2019s Query Loop and templates, or a featured section\/hero block that manually links to the Page.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1770873522545\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"how-do-i-display-only-sticky-posts-in-a-section-or-widget\">How do I display only sticky posts in a section or widget?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>In the Site Editor, add a Query Loop and filter by \u201cSticky posts.\u201d Developers can use a custom WP_Query with post__in =&gt; get_option(&#8216;sticky_posts&#8217;) and orderby =&gt; post__in to output a curated featured list.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1770873529760\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"why-is-my-sticky-post-not-staying-on-top-after-publishing-new-posts\">Why is my sticky post not staying on top after publishing new posts?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Common causes include a static front page (without a stickies aware loop), a custom query using ignore_sticky_posts =&gt; 1, caching not cleared, or the post being scheduled\/private. Check these conditions and review your theme\u2019s index template.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>A sticky post in WordPress is a regular blog post you pin to the top of your Posts page so [&hellip;]<\/p>\n","protected":false},"author":21,"featured_media":19146,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[350],"tags":[],"class_list":["post-18662","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-knowledgebase"],"acf":[],"featured_image_src":"https:\/\/www.youstable.com\/blog\/wp-content\/uploads\/2026\/02\/What-is-a-Sticky-Post-in-WordPress-1.jpg","author_info":{"display_name":"Sanjeet Chauhan","author_link":"https:\/\/www.youstable.com\/blog\/author\/sanjeet"},"_links":{"self":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/18662","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/users\/21"}],"replies":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/comments?post=18662"}],"version-history":[{"count":11,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/18662\/revisions"}],"predecessor-version":[{"id":19345,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/18662\/revisions\/19345"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/media\/19146"}],"wp:attachment":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/media?parent=18662"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/categories?post=18662"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/tags?post=18662"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}