微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

wordpress的sitemap地图常见报错 (Error on line 1 at column 6: XML declaration allowed only at the start of the doc

WordPress程序报错的问题

报错代码如下:

This page contains the following errors:

error on line 1 at column 6: XML declaration allowed only at the start of the document

Below is a rendering of the page up to the first error.

sitemap报错的解决办法:

通常修改网站根目录的wp-blog-header.PHP文件即可。

文件仅几行代码修改为:

if ( !isset($wp_did_header) ) { 

	$wp_did_header = true; ob_start(); 

	// Load the wordpress library.
	require_once( dirname(__FILE__) . '/wp-load.PHP' ); ob_end_clean(); 

	// Set up the wordpress query.
	wp();

	// Load the theme template.
	require_once( ABSPATH . WPINC . '/template-loader.PHP' );}

wordpress的sitemap地图常见报错 (Error on line 1 at column 6: XML declaration allowed only at the start of the doc)

 对于这种问题大家并不陌生,小白一般会选择更换其它sitemap插件,对于wp大家可以自备两个sitemap插件,各取所长。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐