log
конечно можно, поставь плагин типа Executable PHP widget.
Потом добавь виджет с кодом типа:
Код:
<?php $recent = new WP_Query("showposts=5"); while($recent->have_posts()) : $recent->the_post();?>
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
<?php the_content('Read the rest of this entry »'); ?>
<a href="<?php the_permalink() ?>">Read More</a>
Filed Under (<?php the_category(', ') ?>) by <?php the_author() ?> on <?php the_time('d-m-Y') ?>
<?php comments_popup_link(' (0)Comments', ' (1)Comment', '(%) Comments'); ?>
<?php edit_post_link('Edit', '', ''); ?>
<?php endwhile; ?>