{"id":874,"date":"2017-11-07T15:06:24","date_gmt":"2017-11-07T15:06:24","guid":{"rendered":"https:\/\/hostinguk.net\/blog\/?p=874"},"modified":"2017-11-07T15:07:57","modified_gmt":"2017-11-07T15:07:57","slug":"decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job","status":"publish","type":"post","link":"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/","title":{"rendered":"WordPress, your resource usage, and wp-cron.php"},"content":{"rendered":"<p>If you are looking to speed up WordPress, increase performance under load, or are running into issues with resource usage going absolutely crazy when a search engine indexes your site &#8211; then you may wish to switch from the &#8220;<em>poor-mans-cron<\/em>&#8221; approach and create a formal job to get WordPress to do its homework via wp-cron.php periodically, on your terms, and not with every page load. This article outlines the steps to take to achieve this.<\/p>\n<p>WordPress uses a file called wp-cron.php to do all of its housework. Things such as checking for updates, sending out emails, tidying up, publishing articles, and so on. As the name suggests this is a way to get a Cron Job run &#8211; a familiar term for those of you are familiar with Linux\/Unix\/Apple iOS &#8211; however, for those of you more Windows-centric this would be a Scheduled Task.<\/p>\n<p>As hosting is not always provided with the ability to set a Cron job or Scheduled tasks &#8211; Automattic has worked around this by applying what is often referred to as a &#8216;poor-mans-cron&#8217; &#8211; that is to say, it runs the script to do the housework every time the page is called. This is a great idea &#8211; removes complication, but means that every time someone arrives at the site it calls the wp-cron.php and it makes with the &#8220;is it time yet?!&#8221;<br \/>\nSometimes this works out great, sometimes it means a site will hang for a bit while it plays catch up, however, sometimes it really does start to slow things up and trip up the flow of things.<\/p>\n<h1>Disable wp-cron within wp-config<\/h1>\n<p>First of all, you are going to need to edit the wp-config.php file. If in doubt &#8211; make a backup first. Open the file in an editor of some description and find a suitable place somewhere under:<\/p>\n<pre>define('DB_COLLATE', '');<\/pre>\n<p>&#8230;and add the following line so that it looks like this:<\/p>\n<pre>define('DB_COLLATE', '');\r\ndefine('DISABLE_WP_CRON', true);<\/pre>\n<p>Save the file.<\/p>\n<p>It is important to complete the next step &#8211; otherwise, your WordPress will not do any housekeeping from this point onwards. The site will slow further, and it will not update searches, submit XML sitemaps, publish sites, and so on. This is suboptimal &#8211; so lets press on.<\/p>\n<h1>Create a cron job for wp-cron<\/h1>\n<p>You need to create a job now to run periodically using the control panel or the console. The control panel and the contents of any given cron are going to differ over time &#8211; however, this will give you a great idea of what needs to happen.<\/p>\n<h2>Plesk<\/h2>\n<p>What you need to know here is the absolute path of your code &#8211; this is usually your domain, but if you are not sure &#8211; please do ask. You will need to replace the &#8216;yoursubscriptionnamehere&#8217; in the code below with this. Other than that &#8211; get logged in and off we go:<\/p>\n<p>Ensure you have the correct SUBSCRIPTION selected top right;<\/p>\n<p>On the right hand side of the WEBSITES &amp; DOMAINS tab, look for the option SCHEDULED TASKS which has a calendar icon;<\/p>\n<p>Click on ADD TASK in the light blue bar above any existing cron tasks;<\/p>\n<p>Select RUN A PHP SCRIPT;<\/p>\n<p>Within SCRIPT PATH fill out the following:<\/p>\n<pre>httpdocs\/wp-cron.php<\/pre>\n<p>Select the latest version in the USE PHP VERSION drop down, so for example 5.6 or 7.0;<\/p>\n<p>From the RUN drop down select HOURLY<\/p>\n<p>DESCRIPTION &#8211; fill that out with something like &#8220;WP-CRON as a scheduled task&#8221;<\/p>\n<p>NOTIFY &#8211; select Do not notify<\/p>\n<p>Click on RUN NOW<\/p>\n<p>Click on OKAY<\/p>\n<p>&#8230;.retire for tea and medals &#8211; your work here is done : )<\/p>\n<h2>cPanel<\/h2>\n<p>The following five steps will set up a cron for you within cPanel. All you need to know is your username (as you will need to replace the &#8216;<em>yourusernamehere<\/em>&#8216; in the code below with your user name), and access to your cPanel control panel.<\/p>\n<p>Scroll down to the ADVANCED section, click on CRON JOBS (or search cron in the bar at the top);<\/p>\n<p>Select once per hour from the COMMON SETTINGS.<\/p>\n<p>Set the rest of the options to EVERY DAY EVERY MONTH and so on.<\/p>\n<p>Now where it says COMMAND enter the following<\/p>\n<pre>cd \/home\/yourusernamehere\/public_html; php -q wp-cron.php<\/pre>\n<p>Now click on ADD NEW CRON JOB<\/p>\n<p>Your work here is done.<\/p>\n<h2>Console access<\/h2>\n<p>You have full hands-on access. You must have been very good in a former life &#8211; alas you also have the ability to make a big mess. Please note that the R key is very very close to the E key &#8211; it is sometimes wiser to do a crontab -l so you have a copy to hand should the unthinkable happen&#8230;<\/p>\n<pre>crontab -l\r\ncrontab -e<\/pre>\n<p>Now in your editor of choice &#8211; add the following line and comment for each site you are looking to have run wp-cron.php for. Needless to say you need to carefully consider the path you are going to use before opening the editor.<\/p>\n<pre>0 * * * * cd \/path\/to\/my\/website\/document\/root\/here ; php -q wp-cron.php &gt;\/dev\/null &gt;2\/dev\/null<\/pre>\n<p>ESC :wq for anyone who is stuck in VI\/M at this point \ud83d\ude09<\/p>\n<p>So &#8211; you now have a record in there, and if it says its good &#8211; list the crontab again, copy paste the line to the command line, remove the -q and see what happens when you run it. For example:<\/p>\n<pre>cd \/path\/to\/my\/website\/document\/root\/here ; php wp-cron.php\r\n<\/pre>\n<p>Returning to the console with no errors would suggest all was well. Flaming death &#8211; roll back the change in your wp-config and contact support.<\/p>\n<h1>Summary<\/h1>\n<p>This will now remove the burden of &#8220;on each page load run this&#8221; from your site content, and moved it to a periodic event.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you are looking to speed up WordPress, increase performance under load, or are running into issues with resource usage going absolutely crazy when a search engine indexes your site &#8211; then you may wish to switch from the &#8220;poor-mans-cron&#8221; approach and create a formal job to get WordPress to do its homework via wp-cron.php&#8230; <a class=\"moretag\" href=\"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/\">Keep Reading<\/a><\/p>\n","protected":false},"author":6,"featured_media":877,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"Switching your wp-config.php from poor-mans-cron to a scheduled task for less resource consumption.","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[13],"tags":[],"class_list":["post-874","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-support"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Decrease your WordPress overhead by moving wp-cron to a scheduled task<\/title>\n<meta name=\"description\" content=\"Automattic&#039;s WordPress uses wp-cron.php to do its housework. You can reduce your resource load and speed up loading by disabling it and running from a cron.\" \/>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Decrease your WordPress overhead by moving wp-cron to a scheduled task\" \/>\n<meta property=\"og:description\" content=\"Automattic&#039;s WordPress uses wp-cron.php to do its housework. You can reduce your resource load and speed up loading by disabling it and running from a cron.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/\" \/>\n<meta property=\"og:site_name\" content=\"Hosting UK\" \/>\n<meta property=\"article:published_time\" content=\"2017-11-07T15:06:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-11-07T15:07:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/i0.wp.com\/hostinguk.net\/blog\/wp-content\/uploads\/2017\/11\/clock.jpeg?fit=2000%2C2000&ssl=1\" \/>\n\t<meta property=\"og:image:width\" content=\"2000\" \/>\n\t<meta property=\"og:image:height\" content=\"2000\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Anthony Hogbin\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Anthony Hogbin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/\"},\"author\":{\"name\":\"Anthony Hogbin\",\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/#\/schema\/person\/e7707cd2857ef38b31f396b1bf878707\"},\"headline\":\"WordPress, your resource usage, and wp-cron.php\",\"datePublished\":\"2017-11-07T15:06:24+00:00\",\"dateModified\":\"2017-11-07T15:07:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/\"},\"wordCount\":921,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/staging.hostinguk.net\/blog\/wp-content\/uploads\/2017\/11\/clock.jpeg\",\"articleSection\":[\"Support\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/\",\"url\":\"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/\",\"name\":\"Decrease your WordPress overhead by moving wp-cron to a scheduled task\",\"isPartOf\":{\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/staging.hostinguk.net\/blog\/wp-content\/uploads\/2017\/11\/clock.jpeg\",\"datePublished\":\"2017-11-07T15:06:24+00:00\",\"dateModified\":\"2017-11-07T15:07:57+00:00\",\"author\":{\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/#\/schema\/person\/e7707cd2857ef38b31f396b1bf878707\"},\"description\":\"Automattic's WordPress uses wp-cron.php to do its housework. You can reduce your resource load and speed up loading by disabling it and running from a cron.\",\"breadcrumb\":{\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/#primaryimage\",\"url\":\"https:\/\/staging.hostinguk.net\/blog\/wp-content\/uploads\/2017\/11\/clock.jpeg\",\"contentUrl\":\"https:\/\/staging.hostinguk.net\/blog\/wp-content\/uploads\/2017\/11\/clock.jpeg\",\"width\":2000,\"height\":2000},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/staging.hostinguk.net\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"WordPress, your resource usage, and wp-cron.php\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/#website\",\"url\":\"https:\/\/staging.hostinguk.net\/blog\/\",\"name\":\"Hosting UK\",\"description\":\"Hosting UK | Domain names | Web hosting | Dedicated Servers\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/staging.hostinguk.net\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/staging.hostinguk.net\/blog\/#\/schema\/person\/e7707cd2857ef38b31f396b1bf878707\",\"name\":\"Anthony Hogbin\",\"url\":\"https:\/\/staging.hostinguk.net\/blog\/author\/huk-ant\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Decrease your WordPress overhead by moving wp-cron to a scheduled task","description":"Automattic's WordPress uses wp-cron.php to do its housework. You can reduce your resource load and speed up loading by disabling it and running from a cron.","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_GB","og_type":"article","og_title":"Decrease your WordPress overhead by moving wp-cron to a scheduled task","og_description":"Automattic's WordPress uses wp-cron.php to do its housework. You can reduce your resource load and speed up loading by disabling it and running from a cron.","og_url":"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/","og_site_name":"Hosting UK","article_published_time":"2017-11-07T15:06:24+00:00","article_modified_time":"2017-11-07T15:07:57+00:00","og_image":[{"width":2000,"height":2000,"url":"https:\/\/i0.wp.com\/hostinguk.net\/blog\/wp-content\/uploads\/2017\/11\/clock.jpeg?fit=2000%2C2000&ssl=1","type":"image\/jpeg"}],"author":"Anthony Hogbin","twitter_misc":{"Written by":"Anthony Hogbin","Estimated reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/#article","isPartOf":{"@id":"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/"},"author":{"name":"Anthony Hogbin","@id":"https:\/\/staging.hostinguk.net\/blog\/#\/schema\/person\/e7707cd2857ef38b31f396b1bf878707"},"headline":"WordPress, your resource usage, and wp-cron.php","datePublished":"2017-11-07T15:06:24+00:00","dateModified":"2017-11-07T15:07:57+00:00","mainEntityOfPage":{"@id":"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/"},"wordCount":921,"commentCount":0,"image":{"@id":"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/#primaryimage"},"thumbnailUrl":"https:\/\/staging.hostinguk.net\/blog\/wp-content\/uploads\/2017\/11\/clock.jpeg","articleSection":["Support"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/","url":"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/","name":"Decrease your WordPress overhead by moving wp-cron to a scheduled task","isPartOf":{"@id":"https:\/\/staging.hostinguk.net\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/#primaryimage"},"image":{"@id":"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/#primaryimage"},"thumbnailUrl":"https:\/\/staging.hostinguk.net\/blog\/wp-content\/uploads\/2017\/11\/clock.jpeg","datePublished":"2017-11-07T15:06:24+00:00","dateModified":"2017-11-07T15:07:57+00:00","author":{"@id":"https:\/\/staging.hostinguk.net\/blog\/#\/schema\/person\/e7707cd2857ef38b31f396b1bf878707"},"description":"Automattic's WordPress uses wp-cron.php to do its housework. You can reduce your resource load and speed up loading by disabling it and running from a cron.","breadcrumb":{"@id":"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/#primaryimage","url":"https:\/\/staging.hostinguk.net\/blog\/wp-content\/uploads\/2017\/11\/clock.jpeg","contentUrl":"https:\/\/staging.hostinguk.net\/blog\/wp-content\/uploads\/2017\/11\/clock.jpeg","width":2000,"height":2000},{"@type":"BreadcrumbList","@id":"https:\/\/staging.hostinguk.net\/blog\/decrease-your-wordpress-overhead-with-wp-cron-as-a-cron-job\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/staging.hostinguk.net\/blog\/"},{"@type":"ListItem","position":2,"name":"WordPress, your resource usage, and wp-cron.php"}]},{"@type":"WebSite","@id":"https:\/\/staging.hostinguk.net\/blog\/#website","url":"https:\/\/staging.hostinguk.net\/blog\/","name":"Hosting UK","description":"Hosting UK | Domain names | Web hosting | Dedicated Servers","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/staging.hostinguk.net\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/staging.hostinguk.net\/blog\/#\/schema\/person\/e7707cd2857ef38b31f396b1bf878707","name":"Anthony Hogbin","url":"https:\/\/staging.hostinguk.net\/blog\/author\/huk-ant\/"}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/staging.hostinguk.net\/blog\/wp-content\/uploads\/2017\/11\/clock.jpeg","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p63y3g-e6","jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/staging.hostinguk.net\/blog\/wp-json\/wp\/v2\/posts\/874","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/staging.hostinguk.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/staging.hostinguk.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/staging.hostinguk.net\/blog\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/staging.hostinguk.net\/blog\/wp-json\/wp\/v2\/comments?post=874"}],"version-history":[{"count":2,"href":"https:\/\/staging.hostinguk.net\/blog\/wp-json\/wp\/v2\/posts\/874\/revisions"}],"predecessor-version":[{"id":879,"href":"https:\/\/staging.hostinguk.net\/blog\/wp-json\/wp\/v2\/posts\/874\/revisions\/879"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/staging.hostinguk.net\/blog\/wp-json\/wp\/v2\/media\/877"}],"wp:attachment":[{"href":"https:\/\/staging.hostinguk.net\/blog\/wp-json\/wp\/v2\/media?parent=874"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/staging.hostinguk.net\/blog\/wp-json\/wp\/v2\/categories?post=874"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/staging.hostinguk.net\/blog\/wp-json\/wp\/v2\/tags?post=874"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}