|
@@ -26,7 +26,7 @@ get_header(); ?>
|
|
|
<?php $args = array('post_type' => 'post','posts_per_page' => 5,'post__in' => $sticky);?>
|
|
|
<?php $stickyposts = get_posts($args); ?>
|
|
|
<?php foreach ($stickyposts as $post) : setup_postdata($post); ?>
|
|
|
- <li style="color:#777"><?php echo get_the_modified_date('y/m/d'); ?> - <a href="<?php the_permalink() ?>"><?php the_title(); ?></a> <sup>*</sup></li>
|
|
|
+ <li style="color:#777"><?php echo get_the_modified_date('y/m/d'); ?><sup>*</sup> - <a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
|
|
|
<?php endforeach; ?>
|
|
|
<?php } ?>
|
|
|
<?php $recentposts = get_posts(array( 'numberposts' => 10, 'offset' => 0, 'post__not_in' => get_option( 'sticky_posts' )) ); foreach ($recentposts as $post) : setup_postdata($post); ?>
|