Title: move date below excerpt
Last modified: August 19, 2016

---

# move date below excerpt

 *  [jonny41891](https://wordpress.org/support/users/jonny41891/)
 * (@jonny41891)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/move-date-below-excerpt/)
 * Hey, I’ve tried almost all I can think of, but does anyone know how to move the
   date and the rest of the meta data below the excerpt?
    I’m using this theme [http://themeforest.net/item/revolution-magazine/full_screen_preview/114530](http://themeforest.net/item/revolution-magazine/full_screen_preview/114530)

Viewing 11 replies - 1 through 11 (of 11 total)

 *  Thread Starter [jonny41891](https://wordpress.org/support/users/jonny41891/)
 * (@jonny41891)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/move-date-below-excerpt/#post-1796656)
 * anyone?
 *  [do77](https://wordpress.org/support/users/do77/)
 * (@do77)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/move-date-below-excerpt/#post-1796720)
 * Just edit index.php and single.php and move the div that includes the meta data
   below the excerpt…
 *  Thread Starter [jonny41891](https://wordpress.org/support/users/jonny41891/)
 * (@jonny41891)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/move-date-below-excerpt/#post-1796806)
 * I’m sorry but I can’t seem to find where the excerpt part is… here is my code
   for index.php
 *     ```
       <?php get_header(); ?>
   
       	<div id="container">
   
       		<div class="center">
   
       			<?php rev_featured(); ?>
   
       			<div id="body">
   
       				<?php rev_loop(); ?>
   
       				<?php if (is_home() || (previous_post_link() != '' || next_posts_link() != '')) { ?>
   
       				<div class="page-navigation">
   
       					<?php if (function_exists('wp_pagenavi')) { wp_pagenavi(); } else { ?>
   
       						<div class="alignleft default"><?php previous_posts_link('<span>Newer Entries</span>'); ?></div>
       						<div class="alignright default"><?php next_posts_link('<span>Older Entries</span>'); ?></div>
   
       					<?php } ?>
   
       				</div>
   
       				<?php } ?>
   
       			</div>
   
       			<?php get_sidebar('Sidebar'); ?>
   
       		</div>
   
       	</div>
   
       <?php get_footer(); ?>
       ```
   
 * and here is my single.php
 *     ```
       <?php get_header(); ?>
   
       <?php global $options; foreach ($options as $value) { if (get_option( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_option( $value['id'] ); } } ?>
   
       	<div id="container">
   
       		<div class="center">
   
       			<div id="body">
   
       				<?php if (have_posts()) { while (have_posts()) { the_post(); ?>
   
       					<div class="post-wrapper single-post" id="post-<?php the_ID(); ?>">
   
       						<?php if (in_array('Thumb', $rev_general)) { rev_thumb('banner'); } ?>
   
       						<div class="post">
   
       							<h1><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
   
       							<?php rev_meta(); ?>
   
       							<?php the_content(); ?>
   
       							<?php if (in_array('TinyURL', $rev_general)) { rev_tinyURL(get_permalink($post->ID)); } ?>
   
       						</div>
   
       					</div>
   
       					<?php if (in_array('Social', $rev_general)) { ?>
   
       					<div id="social-wrapper">
   
       						<ul>
   
       							<li><a href="http://twitthis.com/twit?url=<?php the_permalink(); ?>" title="Tweet about this post"><img src="<?php echo bloginfo('template_directory').'/images/icons/twitter_32.png'; ?>" alt="Tweet about this post" /></a></li>
   
       							<li><a href="http://www.facebook.com/sharer.php?u=<?php the_permalink(); ?>&t=<?php the_title_rss(); ?>" title="Share this post on Facebook"><img src="<?php echo bloginfo('template_directory').'/images/icons/facebook_32.png'; ?>" alt="Share this post on Facebook" /></a></li>
   
       							<li><a href="http://www.stumbleupon.com/submit?url=<?php the_permalink(); ?>&title=<?php the_title_rss(); ?>" title="StumbleUpon this post"><img src="<?php echo bloginfo('template_directory').'/images/icons/stumbleupon_32.png'; ?>" alt="StumbleUpon this post" /></a></li>
   
       							<li><a href="http://digg.com/submit?phase=2?url=<?php the_permalink(); ?>&title=<?php the_title_rss(); ?>" title="Share this post on Digg"><img src="<?php echo bloginfo('template_directory').'/images/icons/digg_32.png'; ?>" alt="Share this post on Digg" /></a></li>									
   
       							<li><a href="<?php echo $com_feedUrl; ?>" title="Subscribe to our feed"><img src="<?php echo bloginfo('template_directory').'/images/icons/rss_32.png'; ?>" alt="Subscribe to our feed" /></a></li>
   
       						</ul>
   
       					</div>
   
       					<?php } if (in_array('Author', $rev_general)) { ?>
   
       					<div id="author-wrapper">
   
       						<h2 class="alt">About the Author – <span><?php the_author(); ?></span></h2>
   
       						<?php echo get_avatar(get_the_author_meta('user_email'),'80'); ?>
   
       						<p><?php the_author_posts_link(); ?> has written <?php the_author_posts(); ?> articles on <?php bloginfo('name'); ?>.</p>
   
       						<p><?php the_author_description(); ?></p>
   
       					</div>
   
       					<?php } if (in_array('Related', $rev_general)) { rev_relatedPosts(); } ?>
   
       					<div id="comments-wrapper"><?php comments_template(); ?></div>
   
       				<?php } } ?>
   
       			</div>
   
       			<?php get_sidebar('Sidebar'); ?>
   
       		</div>
   
       	</div>
   
       <?php get_footer(); ?>
       ```
   
 * oh yea and i’m a newbie, thanks in advance
 *  [Ganners](https://wordpress.org/support/users/ganners/)
 * (@ganners)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/move-date-below-excerpt/#post-1796807)
 * On index I guess your function
 * <?php rev_loop(); ?>
 * calls your loop, so I’m guessing if you look in your functions.php you’ll find
   the code there with the excerpt and date.
 * Could be wrong, I’ve never seen the rev_loop function before though.
 *  Thread Starter [jonny41891](https://wordpress.org/support/users/jonny41891/)
 * (@jonny41891)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/move-date-below-excerpt/#post-1796809)
 * heres my functions.php
 * [Large code excerpt removed by moderator per [forum rules](http://codex.wordpress.org/Forum_Welcome#Posting_Code).
   Please use [the pastebin](http://wordpress.pastebin.com/) for all large code 
   excerpts. It works better anyway.]
 *  Thread Starter [jonny41891](https://wordpress.org/support/users/jonny41891/)
 * (@jonny41891)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/move-date-below-excerpt/#post-1796812)
 * heres my themefunctions.php <script src=”[http://pastebin.com/embed_js.php?i=MYxcfnHp”></script&gt](http://pastebin.com/embed_js.php?i=MYxcfnHp”></script&gt);
 *  Thread Starter [jonny41891](https://wordpress.org/support/users/jonny41891/)
 * (@jonny41891)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/move-date-below-excerpt/#post-1796813)
 * heres my themefunctions.php
 * [massive block of code deleted – please follow forum guidelines and use [http://wordpress.pastebin.ca](http://wordpress.pastebin.ca)]
 *  [Rev. Voodoo](https://wordpress.org/support/users/rvoodoo/)
 * (@rvoodoo)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/move-date-below-excerpt/#post-1796814)
 * starting at line 365 on the pastebin
 *     ```
       rev_meta();
   
                               echo \'<div class="excerpt">\';
   
                               rev_excerpt();
       ```
   
 * move the rev_meta line around to experiment. It will go somewhere under rev_excerpt
 *  Thread Starter [jonny41891](https://wordpress.org/support/users/jonny41891/)
 * (@jonny41891)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/move-date-below-excerpt/#post-1796815)
 * WOW Thanks Man!, it was actually the one that started at 337. But thank you, 
   you were a big help.
 *  [Rev. Voodoo](https://wordpress.org/support/users/rvoodoo/)
 * (@rvoodoo)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/move-date-below-excerpt/#post-1796816)
 * Hey, glad you got it! Thats a complicated theme to read!
 *  Thread Starter [jonny41891](https://wordpress.org/support/users/jonny41891/)
 * (@jonny41891)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/move-date-below-excerpt/#post-1796819)
 * yeah and i’m a newbie too!

Viewing 11 replies - 1 through 11 (of 11 total)

The topic ‘move date below excerpt’ is closed to new replies.

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 11 replies
 * 4 participants
 * Last reply from: [jonny41891](https://wordpress.org/support/users/jonny41891/)
 * Last activity: [15 years, 5 months ago](https://wordpress.org/support/topic/move-date-below-excerpt/#post-1796819)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
