• 24-12-2009, 17:14:34
    #1
    Üyeliği durduruldu
    Arkadaşlar sorun şurası normalde yazının içine resim ve video var fakat gözükmüyor single dosyası aşağıda yardımcı olursanız sevinirim şimdiden tşk.ler...

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    	
    	<div class="navigate">
    	<a href="<?php bloginfo('home'); ?>">Anasayfa</a> &raquo; <?php the_category(' &raquo; '); ?> &raquo; <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
    	</div>
    	
    	<div class="post" id="post-<?php the_ID(); ?>">
    	
    	<h1><?php the_title(); ?></h1>
    	
    	<div class="commenting">
    	<a href="<?php comments_link(); ?>" class="commentsnum"><?php comments_number('0 Yorum', '1 Yorum', '% Yorum'); ?></a>
    	<a href="#respond" class="writecomment">Yorum Yazın</a>
    	&nbsp;<a href="http://www.filmleralemi.com/sorun-bildir/" class="writecomment">Sorun Bildir</a>
    	<div class="in">
    	<?php the_tags('<div class="andtags">Etiketler: ', ', ', '</div>'); ?>
    	</div>
    	</div>
    	<div class="videobox"><?php loadvideo(); ?></div>
    	<div class="desc"><?php the_excerpt(); ?></div>
    	<div class="commenting">
    	<a href="<?php comments_link(); ?>" class="commentsnum"><?php comments_number('0 Yorum', '1 Yorum', '% Yorum'); ?></a>
    	<a href="#respond" class="writecomment">Yorum Yazın</a>
    	&nbsp;<a href="http://www.filmleralemi.com/sorun-bildir/" class="writecomment">Sorun Bildir</a>
    	</div>
    	
    	<div class="in">
    	Bu video hoşuna gitti mi? O zaman bu film'i <b>Paylaşabilirsin.</b>
    	</div>
    	
    	</div>
    
    	<div class="extra">
    	<?php if(function_exists('the_views')) { print '<div class="viewed"><b>'; the_views(); print '</b> Defa izLendi</div>'; } ?>
    	<div class="share">
    <?php show_social_icons(); ?>
    	</div><div class="clear"></div>
    	<?php if(function_exists('the_ratings')) { print '<div class="rated">'; the_ratings(); print '</div>'; } ?>
    	</div>
    	
    	<div class="comments_div">
    	<?php comments_template(); ?>
    	</div>
    
    	<!--
    	<?php trackback_rdf(); ?>
    	-->
    
    <?php endwhile; ?>
    
    <?php else : ?>
    
    	<!-- not found here -->
    	<?php include TEMPLATEPATH. '/templates/404.html'; ?>
    
    <?php endif; ?>
  • 24-12-2009, 18:13:29
    #2
    Üyeliği durduruldu
    kullandığınız temanın adı insider sanırım. o temanın single.php dosyası şöyle:

    <?php get_header(); ?>
    
    <div id="wrapper">
    
    <div id="content">
    <?php load_custom_template(); ?>
    </div>
    
    <div id="side">
    <?php get_sidebar(); ?>
    </div>
    
    <div class="clear"></div>
    </div>
    
    <?php get_footer(); ?>
    ve tema içerisinde templates adlı bir klasör var. buradaki single.html dosyasından çekiyor içeriği.

    dolayısıyla tema klasörü içerisindeki tüm dosyaların tam olduğuna emin olun.
  • 24-12-2009, 18:16:38
    #3
    Kimlik doğrulama veya yönetimden onay bekliyor.
    <h1><?php the_title(); ?></h1>
    burayı
    <h1><?php the_title(); ?></h1>
    				<?php the_content('<p class="serif">Yazının tamamını okuyun &raquo;</p>'); ?>
    bununla değiştirin bakalım olucakmı.
  • 24-12-2009, 18:23:16
    #4
    Üyeliği durduruldu
    HMS adlı üyeden alıntı: mesajı görüntüle
    <h1><?php the_title(); ?></h1>
    burayı
    <h1><?php the_title(); ?></h1>
    				<?php the_content('<p class="serif">Yazının tamamını okuyun &raquo;</p>'); ?>
    bununla değiştirin bakalım olucakmı.
    Çok tşk. ederim verdiğiniz kod işe yaradı.