|
@@ -30,7 +30,7 @@ get_header(); ?>
|
|
|
<?php $args = array('post_type' => 'post', 'orderby' => 'modified', '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'); ?> ( <sup>*</sup><?php echo get_the_date('y/m/d'); ?> )- <a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
|
|
|
+ <li style="color:#777"><?php echo get_the_date('y/m/d'); ?> ( <sup>*</sup><?php echo get_the_modified_date('y/m/d'); ?> )- <a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
|
|
|
<?php endforeach; ?>
|
|
|
<?php } ?>
|
|
|
<?php $recentposts = get_posts(array( 'numberposts' => 13, 'offset' => 0, 'post__not_in' => get_option( 'sticky_posts' )) ); foreach ($recentposts as $post) : setup_postdata($post); ?>
|