你可以。。。
1. Enter your sidebar.php file and remove everything..
(better to just remove the code that calls the widigtized sidebar see examples)
示例1(可能如下所示):<?php if ( function_exists(\'dynamic_sidebar\') && dynamic_sidebar(\'pages\') ) : else : ?><?php endif; ?>
示例2(可能也是这样):
<?php wp_nav_menu( array( \'theme_location\' => \'primary-menu\' ) ); ?>
然后您需要编写自己的代码
您可能想在侧边栏中显示的所有内容。
假设您想显示最新的帖子。。您需要更正代码:
<h2>Recent Posts</h2>
<ul>
<?php
$recent_posts = wp_get_recent_posts();
foreach( $recent_posts as $recent ){
echo \'<li><a href="\' . get_permalink($recent["ID"]) . \'" title="Look \'.$recent["post_title"].\'" >\' . $recent["post_title"].\'</a> </li> \';
}
?>
</ul>
(来源:
http://codex.wordpress.org/Function_Reference/wp_get_recent_posts)
。这将检索最近帖子的列表
通过这种方式,您可以在侧栏中构建侧栏的部分内容。php文件,或者希望将哪个文件作为边栏文件包含在模板中。