{"id":13289,"date":"2023-09-21T03:07:44","date_gmt":"2023-09-21T07:07:44","guid":{"rendered":"http:\/\/local.brightwhiz\/?p=13289"},"modified":"2023-09-21T03:07:48","modified_gmt":"2023-09-21T07:07:48","slug":"how-to-increase-php-time-limit-for-a-wordpress-site","status":"publish","type":"post","link":"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/","title":{"rendered":"How to Increase PHP Time Limit for a WordPress Site"},"content":{"rendered":"\n

Increasing the PHP time limit for a WordPress<\/a> site can be necessary when you have long-running tasks or scripts, such as importing large amounts of data, running complex queries, or performing tasks that require more time than the default PHP time limit allows. You can increase the PHP time limit by modifying the PHP<\/a> configuration or using specific WordPress functions.<\/p>\n\n\n\n

Here are two common methods to increase the PHP time limit for a WordPress site:<\/p>\n\n\n\n

Method 1: Modify php.ini (Server-wide configuration)<\/strong><\/p>\n\n\n\n

Locate your server’s php.ini file. The location of this file can vary depending on your server setup. Common locations include \/etc\/php.ini<\/code>, \/usr\/local\/php\/php.ini<\/code>, or \/etc\/php\/8.x\/php.ini<\/code>, where 8.x<\/code> represents your PHP version.<\/p>\n\n\n\n

Edit the php.ini file using a text editor such as nano<\/code> or vim<\/code>. You may need superuser privileges to do this.<\/p>\n\n\n\n

Find the max_execution_time<\/code> directive in the php.ini file and increase the value to your desired time limit. For example, to set it to 300 seconds (5 minutes), you can use:<\/p>\n\n\n\n

max_execution_time = 300<\/code><\/pre>\n\n\n\n

Save the php.ini file and restart your web server for the changes to take effect. The specific command to restart your web server depends on your server setup. Common commands include:<\/p>\n\n\n\n

For Apache:<\/p>\n\n\n\n

$ sudo service apache2 restart<\/code><\/pre>\n\n\n\n

For Nginx:<\/p>\n\n\n\n

$ sudo service nginx restart<\/code><\/pre>\n\n\n\n

For PHP-FPM:<\/p>\n\n\n\n

$ sudo service php8.x-fpm restart<\/code><\/pre>\n\n\n\n

Replace 8.x<\/code> with your PHP version.<\/p>\n\n\n\n

Method 2: Modify .htaccess (Site-specific configuration)<\/strong><\/p>\n\n\n\n


Increasing the PHP time limit for a WordPress site can be necessary when you have long-running tasks or scripts, such as importing large amounts of data, running complex queries, or performing tasks that require more time than the default PHP time limit allows. You can increase the PHP time limit by modifying the PHP configuration or using specific WordPress functions.<\/p>\n\n\n\n

Here are two common methods to increase the PHP time limit for a WordPress site:<\/p>\n\n\n\n

Method 1: Modify php.ini (Server-wide configuration)<\/strong><\/p>\n\n\n\n

    \n
  1. Locate your server’s php.ini file. The location of this file can vary depending on your server setup. Common locations include \/etc\/php.ini<\/code>, \/usr\/local\/php\/php.ini<\/code>, or \/etc\/php\/7.x\/php.ini<\/code>, where 7.x<\/code> represents your PHP version.<\/li>\n\n\n\n
  2. Edit the php.ini file using a text editor such as nano<\/code> or vim<\/code>. You may need superuser privileges to do this.<\/li>\n\n\n\n
  3. Find the max_execution_time<\/code> directive in the php.ini file and increase the value to your desired time limit. For example, to set it to 300 seconds (5 minutes), you can use:iniCopy codemax_execution_time = 300<\/code><\/li>\n\n\n\n
  4. Save the php.ini file and restart your web server for the changes to take effect. The specific command to restart your web server depends on your server setup. Common commands include:\n
      \n
    • For Apache:bashCopy codesudo service apache2 restart<\/code><\/li>\n\n\n\n
    • For Nginx:bashCopy codesudo service nginx restart<\/code><\/li>\n\n\n\n
    • For PHP-FPM:bashCopy codesudo service php7.x-fpm restart<\/code><\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n

      Replace 7.x<\/code> with your PHP version.<\/p>\n\n\n\n

      Method 2: Modify .htaccess (Site-specific configuration)<\/strong><\/p>\n\n\n\n

      If you don’t have access to the server-wide php.ini file, you can also increase the PHP time limit for your WordPress site by adding the following lines to your site’s .htaccess<\/code> file:<\/p>\n\n\n\n

      php_value max_execution_time 300<\/code><\/pre>\n\n\n\n

      This will set the max_execution_time<\/code> to 300 seconds (5 minutes) for your WordPress site.<\/p>\n\n\n\n

      After making these changes, check if the time limit has been increased by creating a simple PHP script and running it on your server. For example:<\/p>\n\n\n\n

      <?php\nini_set('max_execution_time', 0); \/\/ Set to 0 to disable time limit\necho "Execution time limit: " . ini_get('max_execution_time') . " seconds";\n?><\/code><\/pre>\n\n\n\n

      Remember that increasing the PHP time limit should be done cautiously, as it can affect server performance. It’s important to set a reasonable time limit based on your specific needs and ensure that your server can handle the increased resource usage.<\/p>\n","protected":false},"excerpt":{"rendered":"

      Increasing the PHP time limit for a WordPress site can be necessary when you have long-running tasks or scripts, such as importing large amounts of data, running complex queries, or…<\/p>\n","protected":false},"author":1,"featured_media":13290,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,23,9,16],"tags":[58,400,424,433,449,452,471,544,651],"yoast_head":"\nHow to Increase PHP Time Limit for a WordPress Site<\/title>\n<meta name=\"description\" content=\"This is how to properly increase the PHP time limit for a WordPress site with this these simple steps on your server\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Increase PHP Time Limit for a WordPress Site\" \/>\n<meta property=\"og:description\" content=\"This is how to properly increase the PHP time limit for a WordPress site with this these simple steps on your server\" \/>\n<meta property=\"og:url\" content=\"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/\" \/>\n<meta property=\"og:site_name\" content=\"Brightwhiz.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/brightwhiz\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-09-21T07:07:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-09-21T07:07:48+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/09\/Increase-PHP-Time-Limit.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Michael Bright\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:site\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Michael Bright\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/\"},\"author\":{\"name\":\"Michael Bright\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\"},\"headline\":\"How to Increase PHP Time Limit for a WordPress Site\",\"datePublished\":\"2023-09-21T07:07:44+00:00\",\"dateModified\":\"2023-09-21T07:07:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/\"},\"wordCount\":541,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/09\/Increase-PHP-Time-Limit.jpg\",\"keywords\":[\"Apache\",\"Nginx\",\"Open Source\",\"Optimization\",\"Performance\",\"PHP\",\"Programming\",\"Software development\",\"WordPress\"],\"articleSection\":[\"Articles\",\"Guides\",\"How To\",\"Technology\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/\",\"url\":\"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/\",\"name\":\"How to Increase PHP Time Limit for a WordPress Site\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/09\/Increase-PHP-Time-Limit.jpg\",\"datePublished\":\"2023-09-21T07:07:44+00:00\",\"dateModified\":\"2023-09-21T07:07:48+00:00\",\"description\":\"This is how to properly increase the PHP time limit for a WordPress site with this these simple steps on your server\",\"breadcrumb\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/#primaryimage\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/09\/Increase-PHP-Time-Limit.jpg\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/09\/Increase-PHP-Time-Limit.jpg\",\"width\":1280,\"height\":680,\"caption\":\"Increase PHP Time Limit\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/local.brightwhiz\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Increase PHP Time Limit for a WordPress Site\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/local.brightwhiz\/#website\",\"url\":\"http:\/\/local.brightwhiz\/\",\"name\":\"Brightwhiz.com\",\"description\":\"Best Tech guides, Tutorials, and News\",\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/local.brightwhiz\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/local.brightwhiz\/#organization\",\"name\":\"Brightwhiz\",\"url\":\"http:\/\/local.brightwhiz\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"width\":706,\"height\":135,\"caption\":\"Brightwhiz\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/brightwhiz\/\",\"https:\/\/twitter.com\/brightwhizmag\",\"https:\/\/instagram.com\/bright_whiz\/\",\"https:\/\/www.pinterest.com\/sobbayi\/\",\"https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\",\"name\":\"Michael Bright\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"contentUrl\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"caption\":\"Michael Bright\"},\"sameAs\":[\"https:\/\/sobbayi.com\"],\"url\":\"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Increase PHP Time Limit for a WordPress Site","description":"This is how to properly increase the PHP time limit for a WordPress site with this these simple steps on your server","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":"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/","og_locale":"en_US","og_type":"article","og_title":"How to Increase PHP Time Limit for a WordPress Site","og_description":"This is how to properly increase the PHP time limit for a WordPress site with this these simple steps on your server","og_url":"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/","og_site_name":"Brightwhiz.com","article_publisher":"https:\/\/www.facebook.com\/brightwhiz\/","article_published_time":"2023-09-21T07:07:44+00:00","article_modified_time":"2023-09-21T07:07:48+00:00","og_image":[{"width":1280,"height":680,"url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/09\/Increase-PHP-Time-Limit.jpg","type":"image\/jpeg"}],"author":"Michael Bright","twitter_card":"summary_large_image","twitter_creator":"@brightwhizmag","twitter_site":"@brightwhizmag","twitter_misc":{"Written by":"Michael Bright","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/#article","isPartOf":{"@id":"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/"},"author":{"name":"Michael Bright","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32"},"headline":"How to Increase PHP Time Limit for a WordPress Site","datePublished":"2023-09-21T07:07:44+00:00","dateModified":"2023-09-21T07:07:48+00:00","mainEntityOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/"},"wordCount":541,"commentCount":0,"publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/09\/Increase-PHP-Time-Limit.jpg","keywords":["Apache","Nginx","Open Source","Optimization","Performance","PHP","Programming","Software development","WordPress"],"articleSection":["Articles","Guides","How To","Technology"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/#respond"]}]},{"@type":"WebPage","@id":"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/","url":"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/","name":"How to Increase PHP Time Limit for a WordPress Site","isPartOf":{"@id":"http:\/\/local.brightwhiz\/#website"},"primaryImageOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/#primaryimage"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/09\/Increase-PHP-Time-Limit.jpg","datePublished":"2023-09-21T07:07:44+00:00","dateModified":"2023-09-21T07:07:48+00:00","description":"This is how to properly increase the PHP time limit for a WordPress site with this these simple steps on your server","breadcrumb":{"@id":"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/#primaryimage","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/09\/Increase-PHP-Time-Limit.jpg","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/09\/Increase-PHP-Time-Limit.jpg","width":1280,"height":680,"caption":"Increase PHP Time Limit"},{"@type":"BreadcrumbList","@id":"http:\/\/local.brightwhiz\/how-to-increase-php-time-limit-for-a-wordpress-site\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/local.brightwhiz\/"},{"@type":"ListItem","position":2,"name":"How to Increase PHP Time Limit for a WordPress Site"}]},{"@type":"WebSite","@id":"http:\/\/local.brightwhiz\/#website","url":"http:\/\/local.brightwhiz\/","name":"Brightwhiz.com","description":"Best Tech guides, Tutorials, and News","publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/local.brightwhiz\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/local.brightwhiz\/#organization","name":"Brightwhiz","url":"http:\/\/local.brightwhiz\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","width":706,"height":135,"caption":"Brightwhiz"},"image":{"@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/brightwhiz\/","https:\/\/twitter.com\/brightwhizmag","https:\/\/instagram.com\/bright_whiz\/","https:\/\/www.pinterest.com\/sobbayi\/","https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ"]},{"@type":"Person","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32","name":"Michael Bright","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/","url":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","contentUrl":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","caption":"Michael Bright"},"sameAs":["https:\/\/sobbayi.com"],"url":"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/"}]}},"_links":{"self":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13289"}],"collection":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/comments?post=13289"}],"version-history":[{"count":0,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13289\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media\/13290"}],"wp:attachment":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media?parent=13289"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/categories?post=13289"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/tags?post=13289"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}