سلام
ممنون از جوابت
من با تعداد مطالب صفحه اول مشکل ندارم. گفتم خیلی با وردپرس نا آشنا نیستم. اینی که گفتید حله. نمی خوام مطلب تصادفی من از دسته خاصی هم انتخاب بشه و از همه مطالب انتخاب کنه بهتره و مورد نظره
مطلب دقیقا تغییراتی است که لازمه در ایندکس داده بشه تا اون یه مطلبی که نمایش می ده مطلب آخر نباشه بلکه یه مطلب تصادفی باشه. الان من دقیقا این کار رو هم کردم با این ایندکس:
<?php get_header(); ?>
<div id="posts">
<?php if (have_posts()) : ?>
<?php
$myposts = get_posts('numberposts=1&orderby=rand');
foreach($myposts as $post) :
?>
<div class="cada-post">
<h1><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>
<p id="meta-p"><span class="meta-data"><?php the_time(__('F jS, Y','simple-grey')) ?>, <?php the_time(__('g:i a','simple-grey')) ?></span> <span class="meta-autor"><?php the_author(); ?></span> <span class="meta-comentarios"><?php comments_popup_link(__('No comments','simple-grey'), __('1 comment','simple-grey'), __('% comments','simple-grey')); ?></span></p>
<?php the_content(__('Read the rest of this entry...','simple-grey')); ?>
</div>
<?php endforeach; ?>
<div id="nav">
<div class="nav-left"><?php next_posts_link(__('« Previous Entries','simple-grey')) ?></div>
<div class="nav-right"><?php previous_posts_link(__('Next Entries »','simple-grey')) ?></div>
</div>
</div>
<?php else : ?>
<div class="cada-post">
<h1><?php _e('Not found','simple-grey');?>...</h1>
<p><?php _e('What you\'re looking for doesn\'t exist, or that isn\'t here','simple-grey');?>...</p>
<p><?php _e('Use the search form above to try find what you\'re looking for:','simple-grey');?></p>
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
<p><?php _e('Thanks!','simple-grey');?></p>
</div>
<?php endif; ?>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>
ولی با این ایندکس برای من یه مطلب تصادفی رو فقط عنوانش رو + تاریخ نوشته شدن + تعداد دیدگاه ها رو نشون می ده. در حالی که من می خوام مثل سایر پست ها خلاصه مطلب و عکس و بقیه موارد مثل تگ ها و دسته بندی ها رو هم نشون بده...
ممنون