{"id":4858,"date":"2019-10-31T15:30:47","date_gmt":"2019-10-31T15:30:47","guid":{"rendered":"https:\/\/www.hostinger.com\/tutorials\/?p=4858"},"modified":"2026-03-09T19:19:28","modified_gmt":"2026-03-09T19:19:28","slug":"how-to-fix-cannot-modify-header-information-error-in-wordpress","status":"publish","type":"post","link":"\/ng\/tutorials\/how-to-fix-cannot-modify-header-information-error-in-wordpress","title":{"rendered":"How to fix the \u201ccannot modify header information \u2013 headers already sent by\u201d Error"},"content":{"rendered":"<?xml encoding=\"utf-8\" ?><p>The &ldquo;Cannot modify header information&rdquo; error in WordPress typically occurs when there is an attempt to modify HTTP headers after they have already been sent. This issue is relatively common and can affect the functionality of your plugins, themes, and the WordPress core.<\/p><p>If you encounter this error message, it&rsquo;s crucial to resolve it quickly to prevent any harm to your website&rsquo;s performance.<\/p><p>This WordPress guide will walk you through the troubleshooting steps to fix the &ldquo;Cannot modify header information&rdquo; error. First, let&rsquo;s explore the potential causes.<\/p><p class=\"has-text-align-center\"><a href=\"https:\/\/assets.hostinger.com\/content\/tutorials\/pdf\/Mega-WordPress-Cheat-EN.pdf\">Download all-in-one WordPress cheat sheet<\/a><\/p><p>\n\n\n\n<div class=\"protip\">\n                    <h2 class=\"featured-snippet title\">What Is the &ldquo;Cannot Modify Header Information &ndash; Headers Already Sent By&rdquo; Error?<\/h2>\n                    <p>The &ldquo;Cannot modify header information&rdquo; error happens when HTTP headers are changed after being sent, usually due to whitespace or output before or after PHP tags in files. If left unresolved, this common issue can disrupt the functionality of plugins, themes, and the WordPress core.<\/p>\n                <\/div>\n\n\n\n<\/p><h3 class=\"wp-block-heading\" id=\"h-what-causes-the-cannot-modify-header-information-headers-already-sent-by-error\">What Causes the &ldquo;Cannot Modify Header Information &ndash; Headers Already Sent By&rdquo; Error<\/h3><p>In most cases, the &ldquo;Cannot modify header information&rdquo; error is caused by any output like misplaced text or extra whitespaces before the <strong>&lt;?php<\/strong> opening tag or after the <strong>?&gt;<\/strong> closing tag in PHP files.<\/p><p>Conflicting code within plugins or themes and unexpected <strong>print <\/strong>or <strong>echo <\/strong>statements that generate output before headers are modified can also trigger this error message.<\/p><h2 class=\"wp-block-heading\" id=\"h-how-to-fix-the-cannot-modify-header-information-headers-already-sent-by-error\">How to Fix the &ldquo;Cannot Modify Header Information &ndash; Headers Already Sent By&rdquo; Error<\/h2><p>You can fix this common WordPress error by modifying your website files with a <strong>File Manager <\/strong>or an <a href=\"\/ng\/tutorials\/ftp\/filezilla-ftp-configuration\">FTP client like FileZilla<\/a>.<\/p><p>We&rsquo;ll show you how to resolve the &ldquo;Cannot modify header information&rdquo; error using Hostinger&rsquo;s File Manager, which is available on all <a href=\"\/ng\/wordpress-hosting\">WordPress hosting<\/a> plans.<\/p><?xml encoding=\"utf-8\" ?><figure class=\"wp-block-image size-large\"><a class=\"hgr-tutorials-cta hgr-tutorials-cta-wordpress-hosting\" href=\"\/ng\/wordpress-hosting\" target=\"_blank\" rel=\"noreferrer noopener\"><img loading=\"lazy\" decoding=\"async\" width=\"2048\" height=\"600\" src=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/06\/New-WP_in-text-banner.png\/public\" alt=\"\" class=\"wp-image-111781\" srcset=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/06\/New-WP_in-text-banner.png\/w=2048,fit=scale-down 2048w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/06\/New-WP_in-text-banner.png\/w=300,fit=scale-down 300w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/06\/New-WP_in-text-banner.png\/w=1024,fit=scale-down 1024w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/06\/New-WP_in-text-banner.png\/w=150,fit=scale-down 150w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/06\/New-WP_in-text-banner.png\/w=768,fit=scale-down 768w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/06\/New-WP_in-text-banner.png\/w=1536,fit=scale-down 1536w\" sizes=\"auto, (max-width: 2048px) 100vw, 2048px\" \/><\/a><\/figure><p>\n<div><p class=\"important\"><strong>Important!<\/strong> <a href=\"\/ng\/tutorials\/backup-wordpress\">Back up your WordPress website<\/a> to avoid data loss during troubleshooting.<\/p><\/div>\n\n\n\n<\/p><h3 class=\"wp-block-heading\" id=\"h-1-identify-the-error-location\">1. Identify the Error Location<\/h3><p>The &ldquo;Cannot modify header information&rdquo; error message usually contains information about the file and line number where the error occurs. Here&rsquo;s an example of what it might look like:<\/p><pre class=\"wp-block-preformatted\">Warning: Cannot modify header information &ndash; headers already sent by (output started at \/public_html\/wp-content\/plugins\/plugin-name\/function.php:4) in \/public_html\/wp-includes\/pluggable.php on line 1300<\/pre><p>From that, we know that the first output from the <strong>function.php<\/strong> file in line 4 causes the attempt to modify headers in the <strong>pluggable.php<\/strong> file in line 1300 to fail.<\/p><p>To fix this issue, we need to troubleshoot the faulty <strong>function.php<\/strong> file.<\/p><h3 class=\"wp-block-heading\" id=\"h-2-edit-the-faulty-file\">2. Edit the Faulty File<\/h3><p>After identifying the error&rsquo;s location, use Hostinger&rsquo;s File Manager to check for and remove extra blank spaces from the faulty PHP file. Here&rsquo;s how:<\/p><ol class=\"wp-block-list\">\n<li>Go to <strong>Files <\/strong>&rarr; <strong>File Manager<\/strong> from hPanel, then access the files of your WordPress website.<\/li>\n<\/ol><div class=\"wp-block-image\"><figure data-wp-context='{\"imageId\":\"69e20b320ef71\"}' data-wp-interactive=\"core\/image\" class=\"aligncenter size-large wp-lightbox-container\"><img loading=\"lazy\" decoding=\"async\" width=\"1437\" height=\"254\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" src=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/05\/hpanel-file-manager1.png\/public\" alt=\"Accessing website files via Hostinger's File Manager\" class=\"wp-image-110565\" srcset=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/05\/hpanel-file-manager1.png\/w=1437,fit=scale-down 1437w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/05\/hpanel-file-manager1.png\/w=300,fit=scale-down 300w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/05\/hpanel-file-manager1.png\/w=1024,fit=scale-down 1024w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/05\/hpanel-file-manager1.png\/w=150,fit=scale-down 150w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/05\/hpanel-file-manager1.png\/w=768,fit=scale-down 768w\" sizes=\"auto, (max-width: 1437px) 100vw, 1437px\" \/><button class=\"lightbox-trigger\" type=\"button\" aria-haspopup=\"dialog\" aria-label=\"Enlarge\" data-wp-init=\"callbacks.initTriggerButton\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-style--right=\"state.imageButtonRight\" data-wp-style--top=\"state.imageButtonTop\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"12\" fill=\"none\" viewbox=\"0 0 12 12\">\n\t\t\t\t<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\"><\/path>\n\t\t\t<\/svg>\n\t\t<\/button><\/figure><\/div><ol start=\"2\" class=\"wp-block-list\">\n<li>Locate the problematic file, then double-click to open it.<\/li>\n\n\n\n<li>Remove any spaces before the <strong>&lt;?php<\/strong> tag or after the closing <strong>?&gt;<\/strong> tag and the file&rsquo;s last line of code. In the following example, the PHP opening tag should appear in line 1 instead of 4 without extra whitespace.<\/li>\n<\/ol><div class=\"wp-block-image\"><figure data-wp-context='{\"imageId\":\"69e20b3210b65\"}' data-wp-interactive=\"core\/image\" class=\"aligncenter size-large wp-lightbox-container\"><img loading=\"lazy\" decoding=\"async\" width=\"1893\" height=\"403\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" src=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/05\/hpanel-file-manager-edit.png\/public\" alt=\"Editing a File via Hostinger's hPanel\" class=\"wp-image-110566\" srcset=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/05\/hpanel-file-manager-edit.png\/w=1893,fit=scale-down 1893w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/05\/hpanel-file-manager-edit.png\/w=300,fit=scale-down 300w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/05\/hpanel-file-manager-edit.png\/w=1024,fit=scale-down 1024w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/05\/hpanel-file-manager-edit.png\/w=150,fit=scale-down 150w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/05\/hpanel-file-manager-edit.png\/w=768,fit=scale-down 768w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/05\/hpanel-file-manager-edit.png\/w=1536,fit=scale-down 1536w\" sizes=\"auto, (max-width: 1893px) 100vw, 1893px\" \/><button class=\"lightbox-trigger\" type=\"button\" aria-haspopup=\"dialog\" aria-label=\"Enlarge\" data-wp-init=\"callbacks.initTriggerButton\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-style--right=\"state.imageButtonRight\" data-wp-style--top=\"state.imageButtonTop\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"12\" fill=\"none\" viewbox=\"0 0 12 12\">\n\t\t\t\t<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\"><\/path>\n\t\t\t<\/svg>\n\t\t<\/button><\/figure><\/div><ol start=\"4\" class=\"wp-block-list\">\n<li>Click <strong>Save <\/strong>and reload your website to see if it resolves the error.<\/li>\n<\/ol><h3 class=\"wp-block-heading\" id=\"h-3-replace-the-faulty-file\">3. Replace the Faulty File<\/h3><p>If the error originates from a WordPress core file, you can replace the problematic file with the default one from the WordPress installation package. Here&rsquo;s how:<\/p><ol class=\"wp-block-list\">\n<li>Download the <a href=\"https:\/\/wordpress.org\/download\/\">WordPress installation package<\/a> from the official website and unzip it.<\/li>\n\n\n\n<li>Locate the faulty file on your WordPress website using your web host&rsquo;s File Manager or an FTP client.<\/li>\n\n\n\n<li>Remove the corrupted file and upload the fresh one from the installation package.<\/li>\n\n\n\n<li>Reload your website to see if this resolves the error.<\/li>\n<\/ol><p>For errors that originate from a theme or a plugin, reinstalling it is the easiest fix.<\/p><p>Alternatively, <a href=\"\/ng\/tutorials\/restore-wordpress-from-backup\">restore the WordPress site from a backup<\/a> to address errors post-update. Hostinger users can follow these steps to restore a backup from the hPanel dashboard:<\/p><ol class=\"wp-block-list\">\n<li>Head to <strong>WordPress<\/strong> &rarr; <strong>Security <\/strong>from <strong>hPanel<\/strong>.<\/li>\n\n\n\n<li>Scroll down to the <strong>Update log<\/strong> section. Click on the<strong> three-dot menu<\/strong> next to the chosen backup version and select <strong>Restore<\/strong>.<\/li>\n<\/ol><div class=\"wp-block-image\"><figure data-wp-context='{\"imageId\":\"69e20b32129bc\"}' data-wp-interactive=\"core\/image\" class=\"aligncenter size-large wp-lightbox-container\"><img loading=\"lazy\" decoding=\"async\" width=\"1498\" height=\"456\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" src=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/05\/hpanel-backup-restore.png\/public\" alt=\"Restoring a WordPress backup via Hostinger's hPanel\" class=\"wp-image-110567\" srcset=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/05\/hpanel-backup-restore.png\/w=1498,fit=scale-down 1498w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/05\/hpanel-backup-restore.png\/w=300,fit=scale-down 300w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/05\/hpanel-backup-restore.png\/w=1024,fit=scale-down 1024w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/05\/hpanel-backup-restore.png\/w=150,fit=scale-down 150w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2024\/05\/hpanel-backup-restore.png\/w=768,fit=scale-down 768w\" sizes=\"auto, (max-width: 1498px) 100vw, 1498px\" \/><button class=\"lightbox-trigger\" type=\"button\" aria-haspopup=\"dialog\" aria-label=\"Enlarge\" data-wp-init=\"callbacks.initTriggerButton\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-style--right=\"state.imageButtonRight\" data-wp-style--top=\"state.imageButtonTop\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"12\" fill=\"none\" viewbox=\"0 0 12 12\">\n\t\t\t\t<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\"><\/path>\n\t\t\t<\/svg>\n\t\t<\/button><\/figure><\/div><ol start=\"3\" class=\"wp-block-list\">\n<li>Wait until the restoration is complete, then reload your website.<\/li>\n<\/ol><p>If the issue persists, try <a href=\"\/ng\/tutorials\/how-to-reinstall-wordpress\">reinstalling WordPress<\/a> altogether to reset all the core files.<\/p><p><div class=\"protip\">\n                    <h4 class=\"title\">Pro Tip<\/h4>\n                    <p>Check out our <a href=\"\/ng\/tutorials\/debug-wordpress\">WordPress debugging guide<\/a> for tips and best practices to optimize your website&rsquo;s functionality.<\/p>\n                <\/div>\n\n\n\n<\/p><h2 class=\"wp-block-heading\" id=\"h-conclusion\">Conclusion<\/h2><p>The &ldquo;Cannot modify header information&rdquo; error is a common occurrence among WordPress websites. It&rsquo;s usually caused by accidental whitespace or premature output in PHP code.<\/p><p>If left unresolved, the WordPress header error can affect website performance and, ultimately, user experience. Luckily, the error message itself pinpoints the file that causes the issue.<\/p><p>To fix it, remove any blank lines or echo statements outside the PHP file&rsquo;s opening and closing tags using a file manager or an FTP client. Alternatively, replace the faulty file, reinstall the extension or WordPress.<\/p><p>We hope this article will help you resolve the WordPress header error and get your website back up and running in no time. If you have any questions, take a look at our FAQ section or comment below.<\/p><h2 class=\"wp-block-heading\" id=\"h-cannot-modify-header-information-headers-already-sent-by-faq\">&ldquo;Cannot Modify Header Information &ndash; Headers Already Sent By&rdquo; FAQ<\/h2><p>This section answers some of the most common questions about the &ldquo;Cannot Modify Header Information &ndash; Headers Already Sent By&rdquo; error in WordPress.<\/p><div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1716561098145\"><h3 class=\"schema-faq-question\">How Can I Prevent the &ldquo;Cannot Modify Header Information &ndash; Headers Already Sent By&rdquo; Error?<\/h3> <p class=\"schema-faq-answer\">To prevent the &ldquo;Cannot modify header information&rdquo; error, make sure there are no whitespace or unexpected <strong>echo <\/strong>or <strong>print <\/strong>statements before <strong>&lt;?php<\/strong> or after <strong>?&gt;<\/strong> tags. Use tools like TextFixer and Code Beautify to remove whitespaces from your code. You should also prioritize well-coded plugins and themes.<\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1716561103682\"><h3 class=\"schema-faq-question\">How Can a Plugin Cause the &ldquo;Cannot Modify Header Information &ndash; Headers Already Sent By&rdquo; Error?<\/h3> <p class=\"schema-faq-answer\">A plugin can cause the &ldquo;Cannot modify header information&rdquo; error if it generates output or whitespace before modifying HTTP headers. This often happens due to echo and print statements or coding mistakes, disrupting the header modifications for the site to function properly.<\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1716561108992\"><h3 class=\"schema-faq-question\">Can I Use Output Buffering to Address the &ldquo;Cannot Modify Header Information &ndash; Headers Already Sent By&rdquo; Error?<\/h3> <p class=\"schema-faq-answer\">Yes, you can use <a href=\"https:\/\/www.php.net\/manual\/en\/outcontrol.output-buffering.php\">output buffering<\/a> to fix the error by wrapping your code with <strong>ob_start()<\/strong> at the beginning and <strong>ob_end_flush()<\/strong> at the end. This prevents the output from being printed immediately, allowing headers to load correctly.<\/p> <\/div> <\/div><p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>The &ldquo;Cannot modify header information&rdquo; error in WordPress typically occurs when there is an attempt to modify HTTP headers after they have already been sent. This issue is relatively common and can affect the functionality of your plugins, themes, and the WordPress core. If you encounter this error message, it&rsquo;s crucial to resolve it quickly [&#8230;]<\/p>\n<p><a class=\"btn btn-secondary understrap-read-more-link\" href=\"\/ng\/tutorials\/how-to-fix-cannot-modify-header-information-error-in-wordpress\">Read More&#8230;<\/a><\/p>\n","protected":false},"author":115,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"rank_math_title":"How to Fix the \"Cannot Modify Header Information\" Error","rank_math_description":"The \"Cannot Modify Header Information \u2013 Headers Already Sent By\u201d error can be caused by a faulty code. Read this article to find ways to fix it.","rank_math_focus_keyword":"cannot modify header information - headers already sent by","footnotes":""},"categories":[22637],"tags":[],"class_list":["post-4858","post","type-post","status-publish","format-standard","hentry","category-wordpress"],"hreflangs":[{"locale":"en-US","link":"https:\/\/www.hostinger.com\/tutorials\/how-to-fix-cannot-modify-header-information-error-in-wordpress","default":0},{"locale":"pt-BR","link":"https:\/\/www.hostinger.com\/br\/tutoriais\/como-corrigir-warning-cannot-modify-header-information-headers-already-sent-by","default":0},{"locale":"id-ID","link":"https:\/\/www.hostinger.com\/id\/tutorial\/cannot-modify-header-information-headers-already-sent-by","default":0},{"locale":"en-UK","link":"https:\/\/www.hostinger.com\/uk\/tutorials\/how-to-fix-cannot-modify-header-information-error-in-wordpress","default":0},{"locale":"en-MY","link":"https:\/\/www.hostinger.com\/my\/tutorials\/cannot-modify-header-information","default":0},{"locale":"en-PH","link":"https:\/\/www.hostinger.com\/ph\/tutorials\/cannot-modify-header-information","default":0},{"locale":"pt-PT","link":"https:\/\/www.hostinger.com\/pt\/tutoriais\/como-corrigir-warning-cannot-modify-header-information-headers-already-sent-by","default":0},{"locale":"en-IN","link":"https:\/\/www.hostinger.com\/in\/tutorials\/how-to-fix-cannot-modify-header-information-error-in-wordpress","default":0},{"locale":"en-CA","link":"https:\/\/www.hostinger.com\/ca\/tutorials\/how-to-fix-cannot-modify-header-information-error-in-wordpress","default":0},{"locale":"en-AU","link":"https:\/\/www.hostinger.com\/au\/tutorials\/how-to-fix-cannot-modify-header-information-error-in-wordpress","default":0},{"locale":"en-NG","link":"https:\/\/www.hostinger.com\/ng\/tutorials\/how-to-fix-cannot-modify-header-information-error-in-wordpress","default":0}],"_links":{"self":[{"href":"https:\/\/www.hostinger.com\/ng\/tutorials\/wp-json\/wp\/v2\/posts\/4858","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hostinger.com\/ng\/tutorials\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hostinger.com\/ng\/tutorials\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hostinger.com\/ng\/tutorials\/wp-json\/wp\/v2\/users\/115"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hostinger.com\/ng\/tutorials\/wp-json\/wp\/v2\/comments?post=4858"}],"version-history":[{"count":29,"href":"https:\/\/www.hostinger.com\/ng\/tutorials\/wp-json\/wp\/v2\/posts\/4858\/revisions"}],"predecessor-version":[{"id":144976,"href":"https:\/\/www.hostinger.com\/ng\/tutorials\/wp-json\/wp\/v2\/posts\/4858\/revisions\/144976"}],"wp:attachment":[{"href":"https:\/\/www.hostinger.com\/ng\/tutorials\/wp-json\/wp\/v2\/media?parent=4858"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hostinger.com\/ng\/tutorials\/wp-json\/wp\/v2\/categories?post=4858"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hostinger.com\/ng\/tutorials\/wp-json\/wp\/v2\/tags?post=4858"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}