{"id":3603,"date":"2025-03-14T14:09:04","date_gmt":"2025-03-14T11:09:04","guid":{"rendered":"https:\/\/blog.koddit.com\/?p=3603"},"modified":"2025-03-15T12:14:43","modified_gmt":"2025-03-15T09:14:43","slug":"how-to-create-php-page-in-wordpress","status":"publish","type":"post","link":"https:\/\/blog.koddit.com\/en\/en\/how-to-create-php-page-in-wordpress\/","title":{"rendered":"How To Create PHP Page in WordPress"},"content":{"rendered":"<p>If you&#8217;d like to learn how to create a custom PHP page in <a href=\"https:\/\/wordpress.com\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">WordPress<\/a> or implement custom PHP code in your WordPress pages, here&#8217;s a simple guide to help you get started:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1. Create the Custom PHP File<\/h3>\n\n\n\n<p>First, navigate to your theme folder (wp-content\/themes\/your-theme\/) and create a new file called custom-page.php.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n    \/* Template Name: Custom Page *\/\n    echo 'This is my custom PHP page!';\n?&gt;<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/blog.koddit.com\/wp-content\/plugins\/wp-images-lazy-loading\/images\/grey.gif\" data-original=\"https:\/\/blog.koddit.com\/wp-content\/uploads\/2025\/03\/image-7.png\" alt=\"how to create php page in wordpress\" class=\"lazy wp-image-3606\"\/><noscript><img loading=\"lazy\" decoding=\"async\" width=\"854\" height=\"488\" src=\"https:\/\/blog.koddit.com\/wp-content\/uploads\/2025\/03\/image-7.png\" alt=\"how to create php page in wordpress\" class=\"wp-image-3606\" srcset=\"https:\/\/blog.koddit.com\/wp-content\/uploads\/2025\/03\/image-7.png 854w, https:\/\/blog.koddit.com\/wp-content\/uploads\/2025\/03\/image-7-300x171.png 300w, https:\/\/blog.koddit.com\/wp-content\/uploads\/2025\/03\/image-7-768x439.png 768w, https:\/\/blog.koddit.com\/wp-content\/uploads\/2025\/03\/image-7-18x10.png 18w\" sizes=\"(max-width: 854px) 100vw, 854px\" \/><\/noscript><\/figure>\n\n\n\n<p>Notice the <strong>\/* Template Name: Custom Page *\/<\/strong> part in your custom-page.php. If you don&#8217;t write this line it won&#8217;t show up in your template list in the next step.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Create a New Page in WordPress<\/h3>\n\n\n\n<p>Once the PHP file is created, go to the WordPress admin panel and create a new page. On the right-hand side of the page editor, you will find a &#8220;Template&#8221; option under the &#8220;Page Attributes&#8221; section. From the dropdown, select the template that matches the name of the file you created, i.e., Custom Page (the name of your PHP file).<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/blog.koddit.com\/wp-content\/plugins\/wp-images-lazy-loading\/images\/grey.gif\" data-original=\"https:\/\/blog.koddit.com\/wp-content\/uploads\/2025\/03\/image-8-1024x759.png\" alt=\"how to create php page in wordpress\" class=\"lazy wp-image-3607\"\/><noscript><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"759\" src=\"https:\/\/blog.koddit.com\/wp-content\/uploads\/2025\/03\/image-8-1024x759.png\" alt=\"how to create php page in wordpress\" class=\"wp-image-3607\" srcset=\"https:\/\/blog.koddit.com\/wp-content\/uploads\/2025\/03\/image-8-1024x759.png 1024w, https:\/\/blog.koddit.com\/wp-content\/uploads\/2025\/03\/image-8-300x222.png 300w, https:\/\/blog.koddit.com\/wp-content\/uploads\/2025\/03\/image-8-768x569.png 768w, https:\/\/blog.koddit.com\/wp-content\/uploads\/2025\/03\/image-8-16x12.png 16w, https:\/\/blog.koddit.com\/wp-content\/uploads\/2025\/03\/image-8.png 1039w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/noscript><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">3. Publish the Page<\/h3>\n\n\n\n<p>After selecting the template, click &#8220;Publish.&#8221; Your custom page will now be live on your WordPress site. (Don&#8217;t forget to set a title for your WordPress page, sometimes the Publish button is greyed out if you don&#8217;t have a title for the page)<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4. Optional: Separate the Page Template and Content<\/h3>\n\n\n\n<p>If you want to further organize your code, you can create two separate files: custom-page.php (the page template) and custom-page-content.php (where the page content will go). Once the page is created, you can simply update the content by editing custom-page-content.php without touching the template file.<\/p>\n\n\n\n<p>Here\u2019s how you would structure the custom-page.php file:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;?php<br>    \/* Template Name: Custom Page *\/<br>    echo 'This is my custom PHP page!';<br>?><br><code>&lt;?php get_header(); ?><br><br>&lt;div id=\"content\" role=\"main\"><br>    &lt;div class=\"post-box\"><br>        &lt;div class=\"block loop-single\"><br>            &lt;br\/><br>            &lt;?php include 'custom-page-content.php'; ?><br>        &lt;\/div><br>    &lt;\/div><br>&lt;\/div><br><br>&lt;?php get_footer(); ?><br><\/code><\/pre>\n\n\n\n<p>In this structure:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>custom-page.php serves as the template for the page, including the header and footer of your site.<\/li>\n\n\n\n<li>custom-page-content.php will contain the actual content of your page, which you can modify as needed.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">5. Customize the Page Content<\/h3>\n\n\n\n<p>With the <code><strong>custom-page-content.php<\/strong><\/code> file, you have full control over the page content. You can add HTML, CSS, and PHP code to customize it to your needs. For example here is a custom PHP page example that displays user&#8217;s IP address<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>&lt;?php echo 'Your IP address is: ' . $_SERVER['REMOTE_ADDR'] ; ?&gt;<br><\/code><\/pre>\n\n\n\n<p>This allows you to embed any additional functionalities or elements that you want to appear within your custom page.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Fully Customizable Page<\/h3>\n\n\n\n<p>With this setup, you now have a fully customizable WordPress page where you can edit HTML, CSS, and PHP code directly. This is a great way to integrate custom features or layouts into your WordPress site.<\/p>\n\n\n\n<p>There are many ways on how to create php page in WordPress but this one is the easiest I think. So, I highly recommend this approach. Other approaches I have tried sucked, to be honest.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/blog.koddit.com\/wp-content\/plugins\/wp-images-lazy-loading\/images\/grey.gif\" data-original=\"https:\/\/blog.koddit.com\/wp-content\/uploads\/2025\/03\/image-9-1024x446.png\" alt=\"how to create php page in wordpress\" class=\"lazy wp-image-3608\"\/><noscript><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"446\" src=\"https:\/\/blog.koddit.com\/wp-content\/uploads\/2025\/03\/image-9-1024x446.png\" alt=\"how to create php page in wordpress\" class=\"wp-image-3608\" srcset=\"https:\/\/blog.koddit.com\/wp-content\/uploads\/2025\/03\/image-9-1024x446.png 1024w, https:\/\/blog.koddit.com\/wp-content\/uploads\/2025\/03\/image-9-300x131.png 300w, https:\/\/blog.koddit.com\/wp-content\/uploads\/2025\/03\/image-9-768x335.png 768w, https:\/\/blog.koddit.com\/wp-content\/uploads\/2025\/03\/image-9-18x8.png 18w, https:\/\/blog.koddit.com\/wp-content\/uploads\/2025\/03\/image-9.png 1026w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/noscript><\/figure>\n\n\n\n<p>If you have any questions, feel free to ask me in the comment section! I love answering questions \ud83d\ude42<\/p>","protected":false},"excerpt":{"rendered":"<p>If you&#8217;d like to learn how to create a custom PHP page in WordPress or implement custom PHP code in your WordPress pages, here&#8217;s a simple guide to help you get started: 1. Create the Custom PHP File First, navigate to your theme folder (wp-content\/themes\/your-theme\/) and create a new file called custom-page.php. Notice the \/* [&hellip;]<\/p>","protected":false},"author":1,"featured_media":3621,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[268],"tags":[],"class_list":["post-3603","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-en"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How To Create PHP Page in Wordpress - Koddit<\/title>\n<meta name=\"description\" content=\"If you want to know how to create PHP page in wordpress in easy 5 steps, this is the article for you. Step by step I will teach you how...\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blog.koddit.com\/en\/how-to-create-php-page-in-wordpress\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Create PHP Page in Wordpress - Koddit\" \/>\n<meta property=\"og:description\" content=\"If you want to know how to create PHP page in wordpress in easy 5 steps, this is the article for you. Step by step I will teach you how...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blog.koddit.com\/en\/how-to-create-php-page-in-wordpress\/\" \/>\n<meta property=\"og:site_name\" content=\"Koddit\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/r.caner.oncu\" \/>\n<meta property=\"article:published_time\" content=\"2025-03-14T11:09:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-15T09:14:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.koddit.com\/wp-content\/uploads\/2025\/03\/image-7.png\" \/>\n<meta name=\"author\" content=\"Caner \u00d6nc\u00fc\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/blog.koddit.com\/wp-content\/uploads\/2025\/03\/image-7.png\" \/>\n<meta name=\"twitter:creator\" content=\"@caneroncu\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Caner \u00d6nc\u00fc\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/blog.koddit.com\/en\/how-to-create-php-page-in-wordpress\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/blog.koddit.com\/en\/how-to-create-php-page-in-wordpress\/\"},\"author\":{\"name\":\"Caner \u00d6nc\u00fc\",\"@id\":\"https:\/\/blog.koddit.com\/#\/schema\/person\/475b7f34a5b2ec63447d0f5735829ff9\"},\"headline\":\"How To Create PHP Page in WordPress\",\"datePublished\":\"2025-03-14T11:09:04+00:00\",\"dateModified\":\"2025-03-15T09:14:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/blog.koddit.com\/en\/how-to-create-php-page-in-wordpress\/\"},\"wordCount\":458,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/blog.koddit.com\/#organization\"},\"articleSection\":[\"English\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/blog.koddit.com\/en\/how-to-create-php-page-in-wordpress\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/blog.koddit.com\/en\/how-to-create-php-page-in-wordpress\/\",\"url\":\"https:\/\/blog.koddit.com\/en\/how-to-create-php-page-in-wordpress\/\",\"name\":\"How To Create PHP Page in Wordpress - Koddit\",\"isPartOf\":{\"@id\":\"https:\/\/blog.koddit.com\/#website\"},\"datePublished\":\"2025-03-14T11:09:04+00:00\",\"dateModified\":\"2025-03-15T09:14:43+00:00\",\"description\":\"If you want to know how to create PHP page in wordpress in easy 5 steps, this is the article for you. Step by step I will teach you how...\",\"breadcrumb\":{\"@id\":\"https:\/\/blog.koddit.com\/en\/how-to-create-php-page-in-wordpress\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/blog.koddit.com\/en\/how-to-create-php-page-in-wordpress\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/blog.koddit.com\/en\/how-to-create-php-page-in-wordpress\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Anasayfa\",\"item\":\"https:\/\/blog.koddit.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Create PHP Page in WordPress\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/blog.koddit.com\/#website\",\"url\":\"https:\/\/blog.koddit.com\/\",\"name\":\"Koddit\",\"description\":\"Blog\",\"publisher\":{\"@id\":\"https:\/\/blog.koddit.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/blog.koddit.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/blog.koddit.com\/#organization\",\"name\":\"Koddit\",\"url\":\"https:\/\/blog.koddit.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/blog.koddit.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/blog.koddit.com\/wp-content\/uploads\/2023\/04\/koddit-logo.png\",\"contentUrl\":\"https:\/\/blog.koddit.com\/wp-content\/uploads\/2023\/04\/koddit-logo.png\",\"width\":\"176\",\"height\":\"65\",\"caption\":\"Koddit\"},\"image\":{\"@id\":\"https:\/\/blog.koddit.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/blog.koddit.com\/#\/schema\/person\/475b7f34a5b2ec63447d0f5735829ff9\",\"name\":\"Caner \u00d6nc\u00fc\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/blog.koddit.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/0e4ad628f2a21b0fb77e910ee24545b7?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/0e4ad628f2a21b0fb77e910ee24545b7?s=96&d=mm&r=g\",\"caption\":\"Caner \u00d6nc\u00fc\"},\"sameAs\":[\"https:\/\/blog.koddit.com\",\"https:\/\/www.facebook.com\/r.caner.oncu\",\"https:\/\/twitter.com\/caneroncu\"],\"url\":\"https:\/\/blog.koddit.com\/en\/author\/caner\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Create PHP Page in Wordpress - Koddit","description":"If you want to know how to create PHP page in wordpress in easy 5 steps, this is the article for you. Step by step I will teach you how...","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:\/\/blog.koddit.com\/en\/how-to-create-php-page-in-wordpress\/","og_locale":"en_US","og_type":"article","og_title":"How To Create PHP Page in Wordpress - Koddit","og_description":"If you want to know how to create PHP page in wordpress in easy 5 steps, this is the article for you. Step by step I will teach you how...","og_url":"https:\/\/blog.koddit.com\/en\/how-to-create-php-page-in-wordpress\/","og_site_name":"Koddit","article_author":"https:\/\/www.facebook.com\/r.caner.oncu","article_published_time":"2025-03-14T11:09:04+00:00","article_modified_time":"2025-03-15T09:14:43+00:00","og_image":[{"url":"https:\/\/blog.koddit.com\/wp-content\/uploads\/2025\/03\/image-7.png"}],"author":"Caner \u00d6nc\u00fc","twitter_card":"summary_large_image","twitter_image":"https:\/\/blog.koddit.com\/wp-content\/uploads\/2025\/03\/image-7.png","twitter_creator":"@caneroncu","twitter_misc":{"Written by":"Caner \u00d6nc\u00fc","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blog.koddit.com\/en\/how-to-create-php-page-in-wordpress\/#article","isPartOf":{"@id":"https:\/\/blog.koddit.com\/en\/how-to-create-php-page-in-wordpress\/"},"author":{"name":"Caner \u00d6nc\u00fc","@id":"https:\/\/blog.koddit.com\/#\/schema\/person\/475b7f34a5b2ec63447d0f5735829ff9"},"headline":"How To Create PHP Page in WordPress","datePublished":"2025-03-14T11:09:04+00:00","dateModified":"2025-03-15T09:14:43+00:00","mainEntityOfPage":{"@id":"https:\/\/blog.koddit.com\/en\/how-to-create-php-page-in-wordpress\/"},"wordCount":458,"commentCount":0,"publisher":{"@id":"https:\/\/blog.koddit.com\/#organization"},"articleSection":["English"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blog.koddit.com\/en\/how-to-create-php-page-in-wordpress\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blog.koddit.com\/en\/how-to-create-php-page-in-wordpress\/","url":"https:\/\/blog.koddit.com\/en\/how-to-create-php-page-in-wordpress\/","name":"How To Create PHP Page in Wordpress - Koddit","isPartOf":{"@id":"https:\/\/blog.koddit.com\/#website"},"datePublished":"2025-03-14T11:09:04+00:00","dateModified":"2025-03-15T09:14:43+00:00","description":"If you want to know how to create PHP page in wordpress in easy 5 steps, this is the article for you. Step by step I will teach you how...","breadcrumb":{"@id":"https:\/\/blog.koddit.com\/en\/how-to-create-php-page-in-wordpress\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog.koddit.com\/en\/how-to-create-php-page-in-wordpress\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/blog.koddit.com\/en\/how-to-create-php-page-in-wordpress\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Anasayfa","item":"https:\/\/blog.koddit.com\/"},{"@type":"ListItem","position":2,"name":"How To Create PHP Page in WordPress"}]},{"@type":"WebSite","@id":"https:\/\/blog.koddit.com\/#website","url":"https:\/\/blog.koddit.com\/","name":"Koddit","description":"Blog","publisher":{"@id":"https:\/\/blog.koddit.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.koddit.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/blog.koddit.com\/#organization","name":"Koddit","url":"https:\/\/blog.koddit.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.koddit.com\/#\/schema\/logo\/image\/","url":"https:\/\/blog.koddit.com\/wp-content\/uploads\/2023\/04\/koddit-logo.png","contentUrl":"https:\/\/blog.koddit.com\/wp-content\/uploads\/2023\/04\/koddit-logo.png","width":"176","height":"65","caption":"Koddit"},"image":{"@id":"https:\/\/blog.koddit.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/blog.koddit.com\/#\/schema\/person\/475b7f34a5b2ec63447d0f5735829ff9","name":"Caner \u00d6nc\u00fc","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.koddit.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/0e4ad628f2a21b0fb77e910ee24545b7?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0e4ad628f2a21b0fb77e910ee24545b7?s=96&d=mm&r=g","caption":"Caner \u00d6nc\u00fc"},"sameAs":["https:\/\/blog.koddit.com","https:\/\/www.facebook.com\/r.caner.oncu","https:\/\/twitter.com\/caneroncu"],"url":"https:\/\/blog.koddit.com\/en\/author\/caner\/"}]}},"_links":{"self":[{"href":"https:\/\/blog.koddit.com\/en\/wp-json\/wp\/v2\/posts\/3603"}],"collection":[{"href":"https:\/\/blog.koddit.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.koddit.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.koddit.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.koddit.com\/en\/wp-json\/wp\/v2\/comments?post=3603"}],"version-history":[{"count":11,"href":"https:\/\/blog.koddit.com\/en\/wp-json\/wp\/v2\/posts\/3603\/revisions"}],"predecessor-version":[{"id":3629,"href":"https:\/\/blog.koddit.com\/en\/wp-json\/wp\/v2\/posts\/3603\/revisions\/3629"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blog.koddit.com\/en\/wp-json\/wp\/v2\/media\/3621"}],"wp:attachment":[{"href":"https:\/\/blog.koddit.com\/en\/wp-json\/wp\/v2\/media?parent=3603"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.koddit.com\/en\/wp-json\/wp\/v2\/categories?post=3603"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.koddit.com\/en\/wp-json\/wp\/v2\/tags?post=3603"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}