嘿伙计们,我对WordPress相当新,并收到错误:
警告:无法修改标头信息 - 已在/ home2 / zoeflav / public_html / blog / wp-content / plugins / wp-super中发送的输出(/home2/zoeflav/public_html/index.php:2处的输出)第62行的-cache / wp-cache-phase2.php
在我的index.php文件中,我得到了这个:
"; echo "; the_post_thumbnail(); echo "; the_title(); echo "; echo "; echo"; endwhile; ?>
这是第59-71行的代码
If($wp_cache_gzip_encoding)
header('Vary: Accept-Encoding, Cookie');
else
header('Vary: Cookie');
ob_start( 'wp_cache_ob_callback' );
if ( isset( $GLOBALS[ 'wp_super_cache_debug' ] ) && $GLOBALS[ 'wp_super_cache_debug' ] ) wp_cache_debug( 'Created output buffer', 4 );
// restore old supercache file temporarily
if( $super_cache_enabled && $cache_rebuild_files ) {
$user_info = wp_cache_get_cookies_values();
$do_cache = apply_filters( 'do_createsupercache', $user_info );
if( $user_info == '' || $do_cache === true )
wpcache_do_rebuild( get_current_url_supercache_dir() );
如何摆脱这条警告信息,对不起,如果我听起来像菜鸟,但就像我说的那样,我对此很新。