我在這裏新以及在網站開發:) 我有一個關於WordPress的問題。 我嘗試製作側欄小部件。我的主題WordPress的小部件
在我的sidebar.php文件寫到:
<div id="sidebar">
<?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar()) : ?>
<div>some html here </div>
<?php endif; ?>
和function.php
<?php
if (function_exists('register_sidebars'))
register_sidebar();
?>
但它沒有出現在列表中的小部件,但是當我點擊外觀部件,在右側部分出現在Sidebar 1中,我甚至無法移動它。
你能幫我怎麼做嗎? 感謝
詳細博客:http://sforsuresh.in/wordpress-creating-custom-widget-area/ –