{"id":3865,"date":"2019-06-18T11:20:57","date_gmt":"2019-06-18T11:20:57","guid":{"rendered":"https:\/\/colibriwp.com\/blog\/?p=3865"},"modified":"2022-02-25T14:33:20","modified_gmt":"2022-02-25T14:33:20","slug":"wordpress-custom-page-template","status":"publish","type":"post","link":"https:\/\/colibriwp.com\/blog\/wordpress-custom-page-template\/","title":{"rendered":"How to Design a WordPress Custom Page Template (UPDATE 2021)"},"content":{"rendered":"<p>WordPress themes are just great. They make WordPress web design so easy.<\/p>\n<p>But, what happens when you want to go beyond your chosen theme?<\/p>\n<p>What if you want to use a custom WordPress layout on a particular page?<\/p>\n<p>Well, some themes won&#8217;t allow you to alter their layouts.<\/p>\n<p><img class=\"aligncenter\" src=\"https:\/\/media.makeameme.org\/created\/this-is-mine-5c3637.jpg\" alt=\"Image result for mine meme\" \/><\/p>\n<p>But there are some workarounds for this.<\/p>\n<p>Follow me to find out.<\/p>\n<p>&nbsp;<\/p>\n<h2 style=\"text-align: justify;\">What is a Custom Page Template and How to Assign One?<\/h2>\n<p>WordPress pages and posts layout are controlled by a template file named &#8220;page.php&#8221;. Templates are files that tell WordPress how to display different types of content.<\/p>\n<p>Now, you might not want all pages and posts to look the same. This is when you need a custom page template.<\/p>\n<h4><\/h4>\n<h4><u>What WordPress page templates are you using?<\/u><\/h4>\n<p>Wanna find out what page template you&#8217;re using, or how to switch between templates?<\/p>\n<p>It&#8217;s easy peasy, you&#8217;ll need to:<\/p>\n<ol>\n<li>Head over to your WordPress Admin Dashboard,<\/li>\n<li><span style=\"background-color: transparent;\">From the menu on the left, select &#8220;Pages&#8221;,<\/span><\/li>\n<li><span style=\"background-color: transparent;\">Hover over the title of a page,<img loading=\"lazy\" class=\"aligncenter size-full wp-image-7019\" src=\"https:\/\/colibriwp.com\/blog\/wp-content\/uploads\/2019\/06\/All-Pages-in-WordPress.jpg\" alt=\"All Pages in WordPress\" width=\"822\" height=\"474\" \/><\/span><\/li>\n<li><span style=\"background-color: transparent;\">From the menu below the title, select &#8220;Quick Edit&#8221;,<\/span><\/li>\n<li>From the &#8220;Quick Edit&#8221; window, go to the &#8220;Template&#8221; dropdown.<\/li>\n<\/ol>\n<p><span style=\"background-color: transparent;\"><img loading=\"lazy\" class=\"aligncenter size-full wp-image-7020\" src=\"https:\/\/colibriwp.com\/blog\/wp-content\/uploads\/2019\/06\/WordPress-templates.jpg\" alt=\"WordPress templates\" width=\"890\" height=\"205\" \/><\/span><\/p>\n<p>Here you can see all the available theme templates, and you can assign a different template to your current page.<\/p>\n<p>For example, there&#8217;s an option to change your page to full width, if you&#8217;d like. But there&#8217;s no option for a template that adds a second sidebar.<\/p>\n<p>This is why custom WordPress templates can come in handy. Whenever you save a new template, it will be available alongside the old ones as well.<\/p>\n<p>Now, you can assign do this assignment inside the page as well. When you choose to edit a page, on the right-hand side, head over to &#8220;Page Attributes&#8221; -&gt; Template.<\/p>\n<p><img loading=\"lazy\" class=\"aligncenter size-full wp-image-7043\" src=\"https:\/\/colibriwp.com\/blog\/wp-content\/uploads\/2019\/06\/Assigning-a-page-template.jpg\" alt=\"Assigning a page template\" width=\"1258\" height=\"535\" \/><\/p>\n<p>&nbsp;<\/p>\n<h2>How to Create a Child Theme<\/h2>\n<p>Now, before getting our hands dirty with creating a WordPress custom page template, there&#8217;s one thing to bear in mind: make the changes on a child theme. You wouldn&#8217;t want to cause any irreversible changes to the parent theme.<\/p>\n<p>A <a href=\"https:\/\/kubiobuilder.com\/blog\/wordpress-child-themes\/\">WordPress child theme<\/a> is a sub-theme that inherits all the features and styles of the parent theme. Now, if the parent theme gets an update, your child theme won&#8217;t be affected and your changes won&#8217;t be overwritten.<\/p>\n<p>Now, how do you create a child theme? Here are the steps:<\/p>\n<ol>\n<li>Login to your cPanel,<\/li>\n<li>Go to File Manager,<img loading=\"lazy\" class=\"aligncenter size-full wp-image-7023\" src=\"https:\/\/colibriwp.com\/blog\/wp-content\/uploads\/2019\/06\/Access-File-Manager-inside-cPanel.jpg\" alt=\"Access File Manager inside cPanel\" width=\"805\" height=\"331\" \/><\/li>\n<li>Head over to public_html -&gt; wp-content -&gt; themes folder,<img loading=\"lazy\" class=\"aligncenter size-full wp-image-7024\" src=\"https:\/\/colibriwp.com\/blog\/wp-content\/uploads\/2019\/06\/Access-Themes-folder-in-cPanel.jpg\" alt=\"Access Themes folder in cPanel\" width=\"703\" height=\"543\" \/><\/li>\n<li>While inside the &#8220;Themes&#8221; folder, add a new folder from &#8220;+Folder&#8221; in the upper menu. Give it a name. A best-case practice is to use the name of the theme, to which you append &#8220;-child&#8221;. Also, use hyphens, instead of space. In my case, I&#8217;m going to use mesmerize-child, because I&#8217;m using the Mesmerize theme,<\/li>\n<li>Inside the folder, create a new file and call it\u00a0 &#8220;style.css&#8221;,<img loading=\"lazy\" class=\"aligncenter size-full wp-image-7040\" src=\"https:\/\/colibriwp.com\/blog\/wp-content\/uploads\/2019\/06\/Create-style.css-in-cPanel.jpg\" alt=\"Create style.css in cPanel\" width=\"1258\" height=\"582\" \/><\/li>\n<li>. Right-click on the file and select the &#8220;Edit&#8221; option.\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"css\">\/* \r\nTheme Name: Your Theme Child \r\nTheme URL: http:\/\/yourdomain.com\r\nDescription: Your Theme Child \r\nTheme Author: Your Name\r\nAuthor URL: http:\/\/yourdomain.com\r\nTemplate: yourtheme \r\nVersion: 1.0.0 \r\nText Domain: yourtheme-child \r\n*\/<\/pre>\n<p>Here you can paste some of the code in the parent CSS file, or add your own styling.<\/li>\n<li>\u00a0Change the theme and domain names, then hit &#8220;Save&#8221;,<\/li>\n<li>\u00a0Create another file in the same folder. This time name it &#8220;functions.php&#8221;. Paste the following code:\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"php\">&lt;?php\r\nadd_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' );\r\nfunction enqueue_parent_styles() {\r\n   wp_enqueue_style( 'parent-style', get_template_directory_uri().'\/style.css' );\r\n}\r\n?&gt;<\/pre>\n<p>&nbsp;<\/li>\n<li>Go to the WordPress Dashboard, Appearance -&gt; Theme. Your child theme will be there, you just have to activate it.<\/li>\n<\/ol>\n<p>And you&#8217;re done.<\/p>\n<p>Next, let&#8217;s make a new template, shall we?<\/p>\n<h2 style=\"text-align: justify;\">How to Create a WordPress Custom Page Template?<\/h2>\n<p>You can start from the existing theme code and make the necessary adjustments.<\/p>\n<p>Here are the steps:<\/p>\n<ol>\n<li>Go to cPanel -&gt; File Manager,<\/li>\n<li>Navigate to public_html -&gt; wp-content -&gt; themes folder,<\/li>\n<li>Open your main theme folder,<\/li>\n<li>Identify the page.php file. It will look like this:\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"php\">&lt;?php mesmerize_get_header(); ?&gt;\r\n\r\n    &lt;div id='page-content' class=\"page-content\"&gt;\r\n        &lt;div class=\"&lt;?php mesmerize_page_content_wrapper_class(); ?&gt;\"&gt;\r\n            &lt;?php\r\n            while (have_posts()) : the_post();\r\n                get_template_part('template-parts\/content', 'page');\r\n            endwhile;\r\n            ?&gt;\r\n        &lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n\r\n&lt;?php get_footer(); ?&gt;<\/pre>\n<p>&nbsp;<\/li>\n<li>Select the file then choose &#8220;Copy&#8221;,<\/li>\n<li>In the window that pops up, change the path of the file, to the one in your theme child folder,<img loading=\"lazy\" class=\"aligncenter size-full wp-image-7045\" src=\"https:\/\/colibriwp.com\/blog\/wp-content\/uploads\/2019\/06\/Copy-page.php-to-new-file-location.jpg\" alt=\"Copy page.php to new file location\" width=\"499\" height=\"209\" \/><\/li>\n<li>Rename the new file so that you can easily identify what it does.<\/li>\n<li>Add a comment inside the file so that you can tell WordPress that this is a new custom template. Do this by selecting &#8220;edit&#8221; and inserting this text:\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">\/*\r\n * Template Name: Your custom TEmplate's name\r\n * description: &gt;-\r\n Explain what your new templates does\r\n *\/<\/pre>\n<p>Your new file should look like this:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"php\">&lt;?php \r\n\/*\r\n * Template Name: Custom Full Width\r\n * description: &gt;-\r\n  Page template without sidebar\r\n *\/\r\nmesmerize_get_header(); ?&gt;\r\n\r\n    &lt;div id='page-content' class=\"page-content\"&gt;\r\n        &lt;div class=\"&lt;?php mesmerize_page_content_wrapper_class(); ?&gt;\"&gt;\r\n            &lt;?php\r\n            while (have_posts()) : the_post();\r\n                get_template_part('template-parts\/content', 'page');\r\n            endwhile;\r\n            ?&gt;\r\n        &lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n\r\n&lt;?php get_footer(); ?&gt;<\/pre>\n<p>&nbsp;<\/li>\n<\/ol>\n<p>You can add here copies of other files as well. For example, you can customize the single.php file, which will change the look and feel of blog posts.<\/p>\n<p>Next, you&#8217;ll need to roll up your sleeves and write some code.<\/p>\n<p>And if you want to alter CSS styling, you can do this inside the child theme Customizer, inside Aditional CSS or inside the style.css file.<\/p>\n<p>&nbsp;<\/p>\n<h3 style=\"text-align: justify;\">However, there\u2019s a simpler solution\u2026<\/h3>\n<p>With a site builder like Colibri, all the code \u201cstands\u201d behind, and doesn\u2019t block a non-technical site creator. Every addition or change to a custom page is visually reflected in the Customizer. Thus, the site creator has more control over the design. The pretty custom page will be ready in the blink of an eye, with no bothering for the code behind the page.<\/p>\n<p>&nbsp;<\/p>\n<p>We hope this article has made it clear what a custom page is, and why you might need one. Coders and non-coders can now be able to create custom pages as they wish.<\/p>\n<p>&nbsp;<\/p>\n<p>[sibwp_form id=1]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>WordPress themes are just great. They make WordPress web design so easy. But, what happens when you want to go beyond your chosen theme? What if you want to use a custom WordPress layout on a particular page? Well, some themes won&#8217;t allow you to alter their layouts. But there are some workarounds for this.&hellip; <br \/> <a class=\"read-more\" href=\"https:\/\/colibriwp.com\/blog\/wordpress-custom-page-template\/\">Read more<\/a><\/p>\n","protected":false},"author":6,"featured_media":7022,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":[],"categories":[159],"tags":[252,70],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v17.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to create a WordPress custom page with basic coding know-how<\/title>\n<meta name=\"description\" content=\"Wanna find out how to code your own WordPress custom page? No code alternatives for creating custom WordPress templates included. Read on.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/colibriwp.com\/blog\/wordpress-custom-page-template\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to create a WordPress custom page with basic coding know-how\" \/>\n<meta property=\"og:description\" content=\"Wanna find out how to code your own WordPress custom page? No code alternatives for creating custom WordPress templates included. Read on.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/colibriwp.com\/blog\/wordpress-custom-page-template\/\" \/>\n<meta property=\"og:site_name\" content=\"ColibriWP Blog\" \/>\n<meta property=\"article:published_time\" content=\"2019-06-18T11:20:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-02-25T14:33:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/colibriwp.com\/blog\/wp-content\/uploads\/2019\/06\/hands-notch-tailor-tailor-s-scissors-cloth-cutting-piece-fabric-fashion-designer-concept.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"890\" \/>\n\t<meta property=\"og:image:height\" content=\"593\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Alina Belascu\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebSite\",\"@id\":\"https:\/\/colibriwp.com\/blog\/#website\",\"url\":\"https:\/\/colibriwp.com\/blog\/\",\"name\":\"ColibriWP Blog\",\"description\":\"WordPress know-how to boost your design skills\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/colibriwp.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/colibriwp.com\/blog\/wordpress-custom-page-template\/#primaryimage\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/colibriwp.com\/blog\/wp-content\/uploads\/2019\/06\/hands-notch-tailor-tailor-s-scissors-cloth-cutting-piece-fabric-fashion-designer-concept.jpg\",\"contentUrl\":\"https:\/\/colibriwp.com\/blog\/wp-content\/uploads\/2019\/06\/hands-notch-tailor-tailor-s-scissors-cloth-cutting-piece-fabric-fashion-designer-concept.jpg\",\"width\":890,\"height\":593,\"caption\":\"Hands notch tailor tailor's scissors cloth cutting a piece of fabric (fashion designer concept)\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/colibriwp.com\/blog\/wordpress-custom-page-template\/#webpage\",\"url\":\"https:\/\/colibriwp.com\/blog\/wordpress-custom-page-template\/\",\"name\":\"How to create a WordPress custom page with basic coding know-how\",\"isPartOf\":{\"@id\":\"https:\/\/colibriwp.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/colibriwp.com\/blog\/wordpress-custom-page-template\/#primaryimage\"},\"datePublished\":\"2019-06-18T11:20:57+00:00\",\"dateModified\":\"2022-02-25T14:33:20+00:00\",\"author\":{\"@id\":\"https:\/\/colibriwp.com\/blog\/#\/schema\/person\/87f760a68fccd9a3b83d34521adae311\"},\"description\":\"Wanna find out how to code your own WordPress custom page? No code alternatives for creating custom WordPress templates included. Read on.\",\"breadcrumb\":{\"@id\":\"https:\/\/colibriwp.com\/blog\/wordpress-custom-page-template\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/colibriwp.com\/blog\/wordpress-custom-page-template\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/colibriwp.com\/blog\/wordpress-custom-page-template\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/colibriwp.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Design a WordPress Custom Page Template (UPDATE 2021)\"}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/colibriwp.com\/blog\/#\/schema\/person\/87f760a68fccd9a3b83d34521adae311\",\"name\":\"Alina Belascu\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/colibriwp.com\/blog\/#personlogo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/colibriwp.com\/blog\/wp-content\/uploads\/2020\/09\/119058219_10158647533825351_1768509508910138441_o.jpg\",\"contentUrl\":\"https:\/\/colibriwp.com\/blog\/wp-content\/uploads\/2020\/09\/119058219_10158647533825351_1768509508910138441_o.jpg\",\"caption\":\"Alina Belascu\"},\"description\":\"Alina is a digital marketer with a passion for web design. When she's not strategizing she's doing photography, listening to podcasts on history and psychology, and playing with her 2 dogs and cat.\",\"url\":\"https:\/\/colibriwp.com\/blog\/author\/alina-belascu\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to create a WordPress custom page with basic coding know-how","description":"Wanna find out how to code your own WordPress custom page? No code alternatives for creating custom WordPress templates included. Read on.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/colibriwp.com\/blog\/wordpress-custom-page-template\/","og_locale":"en_US","og_type":"article","og_title":"How to create a WordPress custom page with basic coding know-how","og_description":"Wanna find out how to code your own WordPress custom page? No code alternatives for creating custom WordPress templates included. Read on.","og_url":"https:\/\/colibriwp.com\/blog\/wordpress-custom-page-template\/","og_site_name":"ColibriWP Blog","article_published_time":"2019-06-18T11:20:57+00:00","article_modified_time":"2022-02-25T14:33:20+00:00","og_image":[{"width":890,"height":593,"url":"https:\/\/colibriwp.com\/blog\/wp-content\/uploads\/2019\/06\/hands-notch-tailor-tailor-s-scissors-cloth-cutting-piece-fabric-fashion-designer-concept.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Written by":"Alina Belascu","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebSite","@id":"https:\/\/colibriwp.com\/blog\/#website","url":"https:\/\/colibriwp.com\/blog\/","name":"ColibriWP Blog","description":"WordPress know-how to boost your design skills","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/colibriwp.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","@id":"https:\/\/colibriwp.com\/blog\/wordpress-custom-page-template\/#primaryimage","inLanguage":"en-US","url":"https:\/\/colibriwp.com\/blog\/wp-content\/uploads\/2019\/06\/hands-notch-tailor-tailor-s-scissors-cloth-cutting-piece-fabric-fashion-designer-concept.jpg","contentUrl":"https:\/\/colibriwp.com\/blog\/wp-content\/uploads\/2019\/06\/hands-notch-tailor-tailor-s-scissors-cloth-cutting-piece-fabric-fashion-designer-concept.jpg","width":890,"height":593,"caption":"Hands notch tailor tailor's scissors cloth cutting a piece of fabric (fashion designer concept)"},{"@type":"WebPage","@id":"https:\/\/colibriwp.com\/blog\/wordpress-custom-page-template\/#webpage","url":"https:\/\/colibriwp.com\/blog\/wordpress-custom-page-template\/","name":"How to create a WordPress custom page with basic coding know-how","isPartOf":{"@id":"https:\/\/colibriwp.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/colibriwp.com\/blog\/wordpress-custom-page-template\/#primaryimage"},"datePublished":"2019-06-18T11:20:57+00:00","dateModified":"2022-02-25T14:33:20+00:00","author":{"@id":"https:\/\/colibriwp.com\/blog\/#\/schema\/person\/87f760a68fccd9a3b83d34521adae311"},"description":"Wanna find out how to code your own WordPress custom page? No code alternatives for creating custom WordPress templates included. Read on.","breadcrumb":{"@id":"https:\/\/colibriwp.com\/blog\/wordpress-custom-page-template\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/colibriwp.com\/blog\/wordpress-custom-page-template\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/colibriwp.com\/blog\/wordpress-custom-page-template\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/colibriwp.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Design a WordPress Custom Page Template (UPDATE 2021)"}]},{"@type":"Person","@id":"https:\/\/colibriwp.com\/blog\/#\/schema\/person\/87f760a68fccd9a3b83d34521adae311","name":"Alina Belascu","image":{"@type":"ImageObject","@id":"https:\/\/colibriwp.com\/blog\/#personlogo","inLanguage":"en-US","url":"https:\/\/colibriwp.com\/blog\/wp-content\/uploads\/2020\/09\/119058219_10158647533825351_1768509508910138441_o.jpg","contentUrl":"https:\/\/colibriwp.com\/blog\/wp-content\/uploads\/2020\/09\/119058219_10158647533825351_1768509508910138441_o.jpg","caption":"Alina Belascu"},"description":"Alina is a digital marketer with a passion for web design. When she's not strategizing she's doing photography, listening to podcasts on history and psychology, and playing with her 2 dogs and cat.","url":"https:\/\/colibriwp.com\/blog\/author\/alina-belascu\/"}]}},"_links":{"self":[{"href":"https:\/\/colibriwp.com\/blog\/wp-json\/wp\/v2\/posts\/3865"}],"collection":[{"href":"https:\/\/colibriwp.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/colibriwp.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/colibriwp.com\/blog\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/colibriwp.com\/blog\/wp-json\/wp\/v2\/comments?post=3865"}],"version-history":[{"count":30,"href":"https:\/\/colibriwp.com\/blog\/wp-json\/wp\/v2\/posts\/3865\/revisions"}],"predecessor-version":[{"id":9946,"href":"https:\/\/colibriwp.com\/blog\/wp-json\/wp\/v2\/posts\/3865\/revisions\/9946"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/colibriwp.com\/blog\/wp-json\/wp\/v2\/media\/7022"}],"wp:attachment":[{"href":"https:\/\/colibriwp.com\/blog\/wp-json\/wp\/v2\/media?parent=3865"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/colibriwp.com\/blog\/wp-json\/wp\/v2\/categories?post=3865"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/colibriwp.com\/blog\/wp-json\/wp\/v2\/tags?post=3865"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}