• 04-05-2014, 23:47:02
    #1
    Arkadaşlar temada anasayfada gözüken yazıların sadece bir kısmı gözüküyor ve resimlerde gözükmüyor,Ben yazıların içine ne koyuyorsam onların çıkmasını istiyorum.Nasıl yapabilriim ?
  • 04-05-2014, 23:52:47
    #2
    Kimlik doğrulama veya yönetimden onay bekliyor.
    index.php de konu özeti çekilmişse (get_the_excerpt) bu şekilde degiştirin the_content tabi temanızda nasıl çekildigine baglı farklı şekildede çekilmiş olabilir.index.php verebilirseniz bakarım.
  • 05-05-2014, 17:10:22
    #3
    IhsanNet adlı üyeden alıntı: mesajı görüntüle
    index.php de konu özeti çekilmişse (get_the_excerpt) bu şekilde degiştirin the_content tabi temanızda nasıl çekildigine baglı farklı şekildede çekilmiş olabilir.index.php verebilirseniz bakarım.

    <?php get_header(); ?>
            <div id="content">
                <div id="postarea">
    
    <?php $tc_feat_check = get_option('tc_feat_check'); if($tc_feat_check): ?>
            <div class="featured_section">
                <div class="featured_in">
                        <a href="<?php $tc_feat_link = get_option('tc_feat_link'); echo $tc_feat_link; ?>"><img src="<?php $tc_feat_content = get_option('tc_feat_content'); echo $tc_feat_content; ?>" alt="featured" /></a>
                </div>
            </div>
    <?php endif; ?>
    
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    
        <?php include(TEMPLATEPATH."/excrept.php"); ?>
    
        <?php endwhile; else: ?>
    
            <div class="featured_section">
                <div class="featured_in">
                    <h3 style="margin-bottom:800px;"><?php _e('Sorry, no posts matched your criteria.'); ?></h3>
                </div>
            </div>
    
        <?php endif; ?>
    
        <div class="pagenavigation">
    		<div class="navleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
    		<div class="navright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
        <div class="clear"></div>
        </div>
    
                </div>
    
                    <?php get_sidebar(); ?>
    
                </div>
    <?php get_footer(); ?>
  • 05-05-2014, 17:10:43
    #4
    PHP - WORDPRESS - YAZILIM
    tema dizinini açıp, içerisinde excpret.php dosyasını bizimle paylaşınız
  • 05-05-2014, 17:11:43
    #5
    metin_nn adlı üyeden alıntı: mesajı görüntüle
    tema dizinini açıp, içerisinde excpret.php dosyasını bizimle paylaşınız
    <div class="excrept_post">
        <div class="excrept_in">
        <?php include(TEMPLATEPATH."/thumbnail.php"); ?>
            <div class="the_excrept">
                <h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
                <?php content_limit(400); ?>
            </div>
            <div class="clear"></div>
            <div class="excrept_data">
                <div class="excrept_left">
                    <?php the_time('F jS, Y') ?> by <?php the_author() ?>&nbsp;<?php edit_post_link('Edit','',''); ?>
                </div>
                <div class="excrept_right">
                    <div class="excrept_but">
                        <?php comments_popup_link('Add Comment', '1 Comment', '% Comments'); ?>
                    </div>
                    <div class="excrept_but">
                        <a href="<?php the_permalink() ?>">Read More...</a>
                    </div>
                </div>
            <div class="clear"></div>
            </div>
        </div>
    </div>
  • 05-05-2014, 17:13:52
    #6
    PHP - WORDPRESS - YAZILIM
    <div class="excrept_post">
        <div class="excrept_in">
        <?php include(TEMPLATEPATH."/thumbnail.php"); ?>
            <div class="the_excrept">
                <h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
    <?php the_content(); ?>
    
            </div>
            <div class="clear"></div>
            <div class="excrept_data">
                <div class="excrept_left">
                    <?php the_time('F jS, Y') ?> by <?php the_author() ?>&nbsp;<?php edit_post_link('Edit','',''); ?>
                </div>
                <div class="excrept_right">
                    <div class="excrept_but">
                        <?php comments_popup_link('Add Comment', '1 Comment', '% Comments'); ?>
                    </div>
                    <div class="excrept_but">
                        <a href="<?php the_permalink() ?>">Read More...</a>
                    </div>
                </div>
            <div class="clear"></div>
            </div>
        </div>
    </div>
    bu şekil değişebilirsiniz.
  • 05-05-2014, 17:19:42
    #7
    metin_nn adlı üyeden alıntı: mesajı görüntüle
    <div class="excrept_post">
        <div class="excrept_in">
        <?php include(TEMPLATEPATH."/thumbnail.php"); ?>
            <div class="the_excrept">
                <h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
    <?php the_content(); ?>
    
            </div>
            <div class="clear"></div>
            <div class="excrept_data">
                <div class="excrept_left">
                    <?php the_time('F jS, Y') ?> by <?php the_author() ?>&nbsp;<?php edit_post_link('Edit','',''); ?>
                </div>
                <div class="excrept_right">
                    <div class="excrept_but">
                        <?php comments_popup_link('Add Comment', '1 Comment', '% Comments'); ?>
                    </div>
                    <div class="excrept_but">
                        <a href="<?php the_permalink() ?>">Read More...</a>
                    </div>
                </div>
            <div class="clear"></div>
            </div>
        </div>
    </div>
    bu şekil değişebilirsiniz.
    Sagolun hocam.