سلام.بنده برای تغییر سایز "ادامه مطلب" ، "صفحه بعد" و "صفحه قبل" در قطعه کد زیر از چه تگی و چگونه استفاده کنم
<?php if ( function_exists("has_post_thumbnail") && has_post_thumbnail() ) {
the_post_thumbnail(array(200,160), array("class" => "alignleft post_thumbnail")); } ?>
<?php the_content('ادامه مطلب »');?>
</div>
</div><!--/post-<?php the_ID(); ?>-->
<?php endwhile; ?>
<div class="navigation">
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } else { ?>
<div class="alignleft"><?php next_posts_link('« صفحه بعد') ?></div>
<div class="alignright"><?php previous_posts_link('صفحه قبل »') ?></div>
<?php } ?>
</div>