• 04-04-2009, 22:28:52
    #1
    Kimlik doğrulama veya yönetimden onay bekliyor.
    merhaba arkadaşlar bileşenlerden yaptığım değişiklikler sitede görünmüyor sorun nedir acaba ? tema widgets destekliyor ?
  • 04-04-2009, 22:58:49
    #2
    Kimlik doğrulama veya yönetimden onay bekliyor.
    wp-super cache kullanıyorsanız belleği temizleyin.
  • 04-04-2009, 23:07:19
    #3
    Hayı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>
  • 04-04-2009, 23:27:07
    #4
    Alıntı
    <div id="sidebar">
    <ul>
    den sonra

    Alıntı
    <?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar()) : ?>
    <li class="widget">
    ekleyin. o zaman bileşen destekli olması lazım.
  • 05-04-2009, 09:12:13
    #5
    Teşekkür ederim ama kodu ekleyince

    Parse error: syntax error, unexpected $end in /home/klasor/public_html/wp-content/themes/tema/sidebar.php on line 33

    Hatası alıyorum
  • 05-04-2009, 09:35:29
    #6
    Ş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>