doktortr adlı üyeden alıntı: mesajı görüntüle
teşekkürler,hallettim sonunda.
1 adet de üst kısma koymak istesem,nasıl yaparım?
Alıntı
<?php
/**
* @package wordpress
* @subpackage classic_theme
*/
get_header();
?>

<div class="navigation">
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
</div>

<div id="content">

<?php if (have_posts()) : While (have_posts()) : The_post(); ?>

<div <?php post_class() ?> id="post-<?php the_id(); ?>">

<div class="totalcomments"><?php comments_popup_link(__('0'), __('1'), __('%')); ?></div>

<h1 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h1>

<div class="storycontent">
<?php the_content('devamını oku &raquo;'); ?>
</div>

<div class="feedback">
<div class="postdate"><?php the_time('d f y, l'); ?></div>
<div class="postcat"><?php the_category(' | '); ?></div>
</div>

<p class="spacer"></p>

</div><!-- /post -->

<?php endwhile; else: ?>

<p><?php _e('sorry, no posts matched your criteria.'); ?></p>

<?php endif; ?>

<div class="navigation">
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
</div>

</div><!-- /content -->
<?php get_footer(); ?>
..