{"id":2748,"date":"2021-10-30T00:39:10","date_gmt":"2021-10-30T00:39:10","guid":{"rendered":"https:\/\/tschaki.com\/?p=2748"},"modified":"2021-11-20T14:22:33","modified_gmt":"2021-11-20T14:22:33","slug":"create-a-new-wordpress-theme","status":"publish","type":"post","link":"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/","title":{"rendered":"Create a new WordPress theme"},"content":{"rendered":"<p>Creating a new WordPress theme is usually very easy. First, create theme files. Second, add content to the comments and third, customize it.<\/p>\n\n\n\n<p>To save major creation processes, a template can be used. This already contains all the key functions of a standard template. This is extremely time-saving.<\/p>\n\n\n\n<p>For this, we developed a full-featured white WordPress template and made it available for download. Download our white theme for free at GitHub:<\/p>\n\n\n\n<p><a href=\"https:\/\/github.com\/RenewedPlains\/wordpresstheme\/releases\/download\/publish\/wordpresstheme.zip\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/github.com\/RenewedPlains\/wordpresstheme\/releases\/download\/publish\/wordpresstheme.zip<\/a><\/p>\n\n\n\n<h2 id=\"h-create-wordpress-theme-by-yourself\">Create WordPress Theme by yourself<\/h2>\n\n\n\n<p>Therefore, only two files are required. Subsequently, after activation, a white page is displayed, without content.<\/p>\n\n\n\n<p><code>index.php<\/code>, <code>style.css<\/code><\/p>\n\n\n\n<p>These files are created for this in the WordPress theme folder <code>\/wp-content\/themes\/{THEMENAME}\/<\/code>. <code>index.php<\/code> can be created empty. Then style.css name and author is added as comment:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;mode&quot;:&quot;css&quot;,&quot;mime&quot;:&quot;text\/css&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:false,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;language&quot;:&quot;CSS&quot;,&quot;modeName&quot;:&quot;css&quot;}\">\/*\nTheme Name: {TEMPLATENAME}\nAuthor: {AUTORNAME}\nAuthor URI: {AUTORURL}\nText Domain: {TEXTDOMAIN}\n*\/<\/pre><\/div>\n\n\n\n<p>These settings are decisive for the name and version, for example.<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;mode&quot;:&quot;css&quot;,&quot;mime&quot;:&quot;text\/css&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:false,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;language&quot;:&quot;CSS&quot;,&quot;modeName&quot;:&quot;css&quot;}\">\/*\nTheme Name: Twenty Twenty\nTheme URI: https:\/\/wordpress.org\/themes\/twentytwenty\/\nAuthor: the WordPress team\nAuthor URI: https:\/\/wordpress.org\/\nDescription: Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors.\nTags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks, accessibility-ready\nVersion: 1.3\nRequires at least: 5.0\nTested up to: 5.4\nRequires PHP: 7.0\nLicense: GNU General Public License v2 or later\nLicense URI: http:\/\/www.gnu.org\/licenses\/gpl-2.0.html\nText Domain: twentytwenty\nThis theme, like WordPress, is licensed under the GPL.\nUse it to make something cool, have fun, and share what you've learned with others.\n*\/<\/pre><\/div>\n\n\n\n<p>Note: The WordPress theme repository uses the number after &#8220;version&#8221; in this file to determine if a new version of the theme is available as an update.<\/p>\n\n\n\n<h3 id=\"h-terms-explanation\">Terms &amp; Explanation<\/h3>\n\n\n\n<p>The elements marked with (*) are required for a theme in the WordPress Theme Repository. Therefore, a theme would not be recognized if a required element is missing.<\/p>\n\n\n\n<ul><li><strong>Theme Name<\/strong> (*): Theme name.<\/li><li><strong>Theme URI<\/strong>: The URL of a public web page where users can find more information about the theme.<\/li><li><strong>Author<\/strong> (*): The name of the person or organization that developed the theme. <\/li><li><strong>Author URI<\/strong>: The URL of the authoring person or organization.<\/li><li><strong>Description<\/strong> (*): A brief description of the theme.<\/li><li><strong>Version<\/strong> (*): The version of the theme, written in the format X.X or X.X.X.<\/li><li><strong>Requires at least<\/strong> (*): The oldest WordPress major version with which the theme works. Written in X.X format. Themes must support only the last three versions.<\/li><li><strong>Tested up to<\/strong> (*): Last tested WordPress major version. Specify only the number in the format X.X.<\/li><li><strong>Requires PHP<\/strong> (*): The oldest supported PHP version, in X.X format.<\/li><li><strong>License<\/strong> (*): The license of the theme.<\/li><li><strong>License URI<\/strong> (*): The URL of the theme licenses.<\/li><li><strong>Text Domain<\/strong> (*): Text domain for translation.<\/li><li><strong>Tags<\/strong>: Words to find the theme using the tag filter. For a complete list of tags, see the Theme Evaluation Guide.<\/li><li><strong>Domain Path<\/strong>: To be able to find the translations when the theme is deactivated. The default value is <code>\/languages<\/code>.<\/li><\/ul>\n\n\n\n<p>After the required header section, the <code>style.css<\/code> file can subsequently contain everything that a normal CSS file contains.<\/p>\n\n\n\n<h2 id=\"h-install-wordpress-theme\">Install WordPress Theme<\/h2>\n\n\n\n<p>After the required header section, the style.css file can subsequently contain everything that a normal CSS file contains. Either an upload of the files via FTP is possible. On the other hand, WordPress brings the ZIP upload under design.<\/p>\n\n\n\n<h3 id=\"h-hochladen-ber-ftp\">Hochladen \u00fcber FTP<\/h3>\n\n\n\n<p>For this you have to download the unzipped theme into the <code>\/wp-content\/themes\/<\/code> folder of your WordPress installation. The theme will be found and activated in the WordPress backend under <strong>Design -> Themes<\/strong>.<\/p>\n\n\n\n<h3 id=\"h-hochladen-ber-wordpress-backend\">Hochladen \u00fcber WordPress Backend<\/h3>\n\n\n\n<p>In the WordPress admin area under Design -> Themes you can upload compressed WordPress themes in ZIP format. Next to the themes page title is the &#8220;Add Theme&#8221; button.<\/p>\n\n\n\n<p>On the other hand, download our white theme template at Github. Create your own WordPress theme:<\/p>\n\n\n\n<p><a href=\"https:\/\/github.com\/RenewedPlains\/wordpresstheme\/releases\/download\/publish\/wordpresstheme.zip\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/github.com\/RenewedPlains\/wordpresstheme\/releases\/download\/publish\/wordpresstheme.zip<\/a><\/p>","protected":false},"excerpt":{"rendered":"<p>Creating a new WordPress theme is usually very easy. First, create theme files. Second, add content to the comments and third, customize it. To save major creation processes, a template can be used. This already contains all the key functions of a standard template. This is extremely time-saving. For this, we developed a full-featured white [&hellip;]<\/p>","protected":false},"author":1,"featured_media":2398,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[124,125],"tags":[130,131],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v16.6 (Yoast SEO v17.9) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Create a new WordPress theme &bull; tschaki<\/title>\n<meta name=\"description\" content=\"Download our template for a new WordPress theme and get started or follow the tutorial to create your own theme.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create a new WordPress theme\" \/>\n<meta property=\"og:description\" content=\"Download our template for a new WordPress theme and get started or follow the tutorial to create your own theme.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/\" \/>\n<meta property=\"og:site_name\" content=\"tschaki\" \/>\n<meta property=\"article:published_time\" content=\"2021-10-30T00:39:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-20T14:22:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/tschaki.com\/wp-content\/uploads\/2020\/11\/WP-WooCommerce.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1580\" \/>\n\t<meta property=\"og:image:height\" content=\"500\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Trent Bojett\" \/>\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\":\"Organization\",\"@id\":\"https:\/\/tschaki.com\/#organization\",\"name\":\"Tschaki.com\",\"url\":\"https:\/\/tschaki.com\/\",\"sameAs\":[],\"logo\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/tschaki.com\/#logo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/tschaki.com\/wp-content\/uploads\/2020\/12\/tschaki-logo-1.png\",\"contentUrl\":\"https:\/\/tschaki.com\/wp-content\/uploads\/2020\/12\/tschaki-logo-1.png\",\"width\":1022,\"height\":273,\"caption\":\"Tschaki.com\"},\"image\":{\"@id\":\"https:\/\/tschaki.com\/#logo\"}},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/tschaki.com\/#website\",\"url\":\"https:\/\/tschaki.com\/\",\"name\":\"tschaki\",\"description\":\"Codesupport and alternatives\",\"publisher\":{\"@id\":\"https:\/\/tschaki.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/tschaki.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/#primaryimage\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/tschaki.com\/wp-content\/uploads\/2020\/11\/WP-WooCommerce.jpg\",\"contentUrl\":\"https:\/\/tschaki.com\/wp-content\/uploads\/2020\/11\/WP-WooCommerce.jpg\",\"width\":1580,\"height\":500,\"caption\":\"create wordpress plugin\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/#webpage\",\"url\":\"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/\",\"name\":\"Create a new WordPress theme &bull; tschaki\",\"isPartOf\":{\"@id\":\"https:\/\/tschaki.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/#primaryimage\"},\"datePublished\":\"2021-10-30T00:39:10+00:00\",\"dateModified\":\"2021-11-20T14:22:33+00:00\",\"description\":\"Download our template for a new WordPress theme and get started or follow the tutorial to create your own theme.\",\"breadcrumb\":{\"@id\":\"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/tschaki.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Create a new WordPress theme\"}]},{\"@type\":\"Article\",\"@id\":\"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/#webpage\"},\"author\":{\"@id\":\"https:\/\/tschaki.com\/#\/schema\/person\/b4bf4286ba196fcd756146568acb3219\"},\"headline\":\"Create a new WordPress theme\",\"datePublished\":\"2021-10-30T00:39:10+00:00\",\"dateModified\":\"2021-11-20T14:22:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/#webpage\"},\"wordCount\":533,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/tschaki.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/tschaki.com\/wp-content\/uploads\/2020\/11\/WP-WooCommerce.jpg\",\"keywords\":[\"php\",\"wordpress\"],\"articleSection\":[\"Technology\",\"Wordpress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/#respond\"]}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/tschaki.com\/#\/schema\/person\/b4bf4286ba196fcd756146568acb3219\",\"name\":\"Trent Bojett\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/tschaki.com\/#personlogo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/7344f00aff4a7391a8f499ff58fc7275?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/7344f00aff4a7391a8f499ff58fc7275?s=96&d=mm&r=g\",\"caption\":\"Trent Bojett\"},\"description\":\"My name is Trent Bojett, I am 28 years old and I live in Switzerland. Because of my enthusiasm for writing and the logical world (= software development) I started this blog in early 2020.\",\"sameAs\":[\"https:\/\/tschaki.com\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Create a new WordPress theme &bull; tschaki","description":"Download our template for a new WordPress theme and get started or follow the tutorial to create your own theme.","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:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/","og_locale":"en_US","og_type":"article","og_title":"Create a new WordPress theme","og_description":"Download our template for a new WordPress theme and get started or follow the tutorial to create your own theme.","og_url":"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/","og_site_name":"tschaki","article_published_time":"2021-10-30T00:39:10+00:00","article_modified_time":"2021-11-20T14:22:33+00:00","og_image":[{"width":1580,"height":500,"url":"https:\/\/tschaki.com\/wp-content\/uploads\/2020\/11\/WP-WooCommerce.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Written by":"Trent Bojett","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Organization","@id":"https:\/\/tschaki.com\/#organization","name":"Tschaki.com","url":"https:\/\/tschaki.com\/","sameAs":[],"logo":{"@type":"ImageObject","@id":"https:\/\/tschaki.com\/#logo","inLanguage":"en-US","url":"https:\/\/tschaki.com\/wp-content\/uploads\/2020\/12\/tschaki-logo-1.png","contentUrl":"https:\/\/tschaki.com\/wp-content\/uploads\/2020\/12\/tschaki-logo-1.png","width":1022,"height":273,"caption":"Tschaki.com"},"image":{"@id":"https:\/\/tschaki.com\/#logo"}},{"@type":"WebSite","@id":"https:\/\/tschaki.com\/#website","url":"https:\/\/tschaki.com\/","name":"tschaki","description":"Codesupport and alternatives","publisher":{"@id":"https:\/\/tschaki.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/tschaki.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","@id":"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/#primaryimage","inLanguage":"en-US","url":"https:\/\/tschaki.com\/wp-content\/uploads\/2020\/11\/WP-WooCommerce.jpg","contentUrl":"https:\/\/tschaki.com\/wp-content\/uploads\/2020\/11\/WP-WooCommerce.jpg","width":1580,"height":500,"caption":"create wordpress plugin"},{"@type":"WebPage","@id":"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/#webpage","url":"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/","name":"Create a new WordPress theme &bull; tschaki","isPartOf":{"@id":"https:\/\/tschaki.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/#primaryimage"},"datePublished":"2021-10-30T00:39:10+00:00","dateModified":"2021-11-20T14:22:33+00:00","description":"Download our template for a new WordPress theme and get started or follow the tutorial to create your own theme.","breadcrumb":{"@id":"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/tschaki.com\/en\/"},{"@type":"ListItem","position":2,"name":"Create a new WordPress theme"}]},{"@type":"Article","@id":"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/#article","isPartOf":{"@id":"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/#webpage"},"author":{"@id":"https:\/\/tschaki.com\/#\/schema\/person\/b4bf4286ba196fcd756146568acb3219"},"headline":"Create a new WordPress theme","datePublished":"2021-10-30T00:39:10+00:00","dateModified":"2021-11-20T14:22:33+00:00","mainEntityOfPage":{"@id":"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/#webpage"},"wordCount":533,"commentCount":0,"publisher":{"@id":"https:\/\/tschaki.com\/#organization"},"image":{"@id":"https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/#primaryimage"},"thumbnailUrl":"https:\/\/tschaki.com\/wp-content\/uploads\/2020\/11\/WP-WooCommerce.jpg","keywords":["php","wordpress"],"articleSection":["Technology","Wordpress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/tschaki.com\/en\/create-a-new-wordpress-theme\/#respond"]}]},{"@type":"Person","@id":"https:\/\/tschaki.com\/#\/schema\/person\/b4bf4286ba196fcd756146568acb3219","name":"Trent Bojett","image":{"@type":"ImageObject","@id":"https:\/\/tschaki.com\/#personlogo","inLanguage":"en-US","url":"https:\/\/secure.gravatar.com\/avatar\/7344f00aff4a7391a8f499ff58fc7275?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/7344f00aff4a7391a8f499ff58fc7275?s=96&d=mm&r=g","caption":"Trent Bojett"},"description":"My name is Trent Bojett, I am 28 years old and I live in Switzerland. Because of my enthusiasm for writing and the logical world (= software development) I started this blog in early 2020.","sameAs":["https:\/\/tschaki.com"]}]}},"_links":{"self":[{"href":"https:\/\/tschaki.com\/en\/wp-json\/wp\/v2\/posts\/2748"}],"collection":[{"href":"https:\/\/tschaki.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tschaki.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tschaki.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tschaki.com\/en\/wp-json\/wp\/v2\/comments?post=2748"}],"version-history":[{"count":2,"href":"https:\/\/tschaki.com\/en\/wp-json\/wp\/v2\/posts\/2748\/revisions"}],"predecessor-version":[{"id":3040,"href":"https:\/\/tschaki.com\/en\/wp-json\/wp\/v2\/posts\/2748\/revisions\/3040"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/tschaki.com\/en\/wp-json\/wp\/v2\/media\/2398"}],"wp:attachment":[{"href":"https:\/\/tschaki.com\/en\/wp-json\/wp\/v2\/media?parent=2748"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tschaki.com\/en\/wp-json\/wp\/v2\/categories?post=2748"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tschaki.com\/en\/wp-json\/wp\/v2\/tags?post=2748"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}