编写这样的最小插件(´functions.php´)应该可以:
add_action(\'wp_head\', function(){
if ( is_home() ) return; // on home it\'s okay
unregister_sidebar(\'sidebar-1\');
echo \'<style>
.content-area {
margin-right: inherit;
width: 100%;
}
</style>\';
});
当然了,
\'sidebar-1\'
而且计数器样式是特定于模板的(本例中为216),需要根据您使用的主题进行调整。