如果不想让主页显示Widget,又不想改动模板文件,怎么办?很简单,把下面的代码添加到functions.php文件中:
<?php
add_filter( 'sidebars_widgets', 'disable_all_widgets' );
function disable_all_widgets( $sidebars_widgets ) {
if ( is_home() )
$sidebars_widgets = array( false );
return $sidebars_widgets;
}
?>
大功告成!
原文:How to: Remove widget areas on your blog homepage without editing template files
分类:新闻资讯