0
我正在做一個WordPress網站,並有一個靜態的側邊欄,我想知道如何將一個插件小部件添加到所述邊欄。這裏是我的側邊欄代碼:如何通過代碼添加wordpress小部件小部件到靜態邊欄?
<div id="sidebar">
<div class="sidebar-entry sidebar-both">
<ul>
<?php the_widget('WP_Widget_Search'); ?>
</ul>
</div>
<div class="sidebar-entry sidebar-left">
<h2> <?php _e('Categoies'); ?></h2>
<ul>
<?php wp_list_cats('sort_column=name&optioncount=1&hierarchical=0'); ?>
</ul>
</div>
<div class="sidebar-entry sidebar-right">
<h2> <?php _e('Archives'); ?></h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</div>
<div class="sidebar-entry sidebar-right">
<ul>
<?php the_widget('WP_Widget_Meta'); ?>
</ul>
</div>
</div>
難道只是將我的靜態側欄變成動態側欄? – CyanPrime
只是試試.... – Dinesh
它實際上工作。謝謝! :d – CyanPrime