windhamdavid 7 months ago
parent
commit
a7faeafb71
1 changed files with 1 additions and 1 deletions
  1. 1 1
      page-now.php

+ 1 - 1
page-now.php

@@ -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); ?>