Bu edit nasıl yapılır ?
6
●311
- 04-05-2014, 23:47:02Arkadaş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 ?
- 05-05-2014, 17:10:22IhsanNet adlı üyeden alıntı: mesajı görüntüle
<?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('« Older Entries') ?></div> <div class="navright"><?php previous_posts_link('Newer Entries »') ?></div> <div class="clear"></div> </div> </div> <?php get_sidebar(); ?> </div> <?php get_footer(); ?> - 05-05-2014, 17:11:43metin_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 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() ?> <?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
<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() ?> <?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:42Sagolun hocam.metin_nn adlı üyeden alıntı: mesajı görüntüle