Bileşenler hakkında
5
●401
- 04-04-2009, 23:07:19Hayır kullanmıyorum.
sanırım sidebar.php'den değişiklik yapmak gerekicek
nexgen gallery rastgele resim gösterimi
sayfalar
kategoriler
bağlantılar
meta
şeklinde ayarlamak istiyorum. Yardımcı olurmusunuz arkadaşlar ?
<div id="sidebar"> <ul> <?php wp_list_pages('title_li=<h2>Ana Sayfa</h2>' ); ?> <li><h2>Arşivler</h2> <ul> <?php wp_get_archives('type=monthly'); ?> </ul> </li> <?php wp_list_categories('show_count=1&title_li=<h2>Kategoriler</h2>'); ?> <?php if ( is_home() || is_page() ) { ?> <?php wp_list_bookmarks(); ?> <li><h2>Üye Paneli</h2> <ul> <?php wp_register(); ?> <li><?php wp_loginout(); ?></li> <li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress</a></li> <?php wp_meta(); ?> </ul> </li> <?php } ?> </ul> <? $sg = 'banner'; include "templates.php";?> </div> - 05-04-2009, 09:35:29Şu şekilde dener misiniz?
<div id="sidebar"> <ul> <?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar()) : ?> <?php wp_list_pages('title_li=<h2>Ana Sayfa</h2>' ); ?> <li><h2>Arşivler</h2> <ul> <?php wp_get_archives('type=monthly'); ?> </ul> </li> <?php wp_list_categories('show_count=1&title_li=<h2>Kategoriler</h2>'); ?> <?php if ( is_home() || is_page() ) { ?> <?php wp_list_bookmarks(); ?> <li><h2>Üye Paneli</h2> <ul> <?php wp_register(); ?> <li><?php wp_loginout(); ?></li> <li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress</a></li> <?php wp_meta(); ?> </ul> </li> <?php } endif; ?> </ul> <? $sg = 'banner'; include "templates.php";?> </div>