Bunları nasıl yan yana alabilirim?
12
●788
- 20-06-2009, 02:17:51
<?php get_header(); ?> <div class="section2"> <h3>``Yine, Yeni, Yeniden``</h3> <p class="tr"> siteadi</p> <p class="tr"> <a href="<?php bloginfo('rss_url'); ?>">rss ile besle beni</a> </p> </div> </div> <div class="section feed"> <div class="post"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <p class="postmetadata"><?php the_time('F jS, Y') ?></p> <h3><?php the_title(); ?></h3> <div class="entry"> <?php the_content('Yazıya git »'); ?> <?php comments_popup_link('yorum bırak »', '1 yorum bırakılmış »', '% yorum bırakılmış »'); ?> </div> <?php endwhile; ?> <div class="navigation"><?php wp_pagebar(array('before'=>'Seiten: '))?></div> <?php else : ?> <h2 class="center">Mağlesef, Excuse Me, Begnadigung, Perdeno, Pardon</h2> <p class="center"></p> <?php include (TEMPLATEPATH . "/searchform.php"); ?> <?php endif; ?> </div> </div> </div> <?php get_footer(); ?>şeklinde olabilir - 20-06-2009, 02:19:49
- 20-06-2009, 02:19:54
Orjinal
<div class="entry">
<?php the_content('Yazıya git »'); ?>
<p>|<?php comments_popup_link('yorum bırak »', '1 yorum bırakılmış »', '% yorum bırakılmış »'); ?></p>
</div>
Birde böyle dene;
<p>
<div class="entry">
<?php the_content('Yazıya git »'); ?>
|<?php comments_popup_link('yorum bırak »', '1 yorum bırakılmış »', '% yorum bırakılmış »'); ?></p>
</div>
