Title: No &#8220;Read More&#8221;
Last modified: August 19, 2016

---

# No “Read More”

 *  [ryanbrown](https://wordpress.org/support/users/ryanbrown/)
 * (@ryanbrown)
 * [16 years, 9 months ago](https://wordpress.org/support/topic/no-read-more/)
 * Can anyone help me!?!
 * On the main page of my blog, the posts seem to get cut off at a certain line 
   count or word count and you have to click on an archive link to view the entire
   post. I want it to, instead, publish the entirety of the article right on the
   main page….how can I do this??
 * I don’t know much about customizing wordpress, so a “for dummies” explanation
   would realy help………….
 * The theme I am using (which is called “modicus”) can be downloaded here: [http://www.upstartblogger.com/wordpress-theme-upstart-blogger-modicus](http://www.upstartblogger.com/wordpress-theme-upstart-blogger-modicus)
 * here’s the link to the blog: [http://ryanbrownshow.com/](http://ryanbrownshow.com/)
 * here’s a picture to help illustrate what I mean: [http://img.villagephotos.com/p/2008-10/1326426/GetHelpDude.jpg](http://img.villagephotos.com/p/2008-10/1326426/GetHelpDude.jpg)
 * Thanks so much!!!!!!!!!!!!!!!!
    Ryan

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

 *  Thread Starter [ryanbrown](https://wordpress.org/support/users/ryanbrown/)
 * (@ryanbrown)
 * [16 years, 9 months ago](https://wordpress.org/support/topic/no-read-more/#post-1176636)
 * please help dudes!
 *  [Mark Ratledge](https://wordpress.org/support/users/songdogtech/)
 * (@songdogtech)
 * [16 years, 9 months ago](https://wordpress.org/support/topic/no-read-more/#post-1176650)
 * Well, I’ll take the “Dude” challenge… (Not that I’ve ever seen “The Big Lebowski.”)
 * As pointed out in the comments section of the [theme author’s page](http://www.upstartblogger.com/wordpress-theme-upstart-blogger-modicus):
 *     ```
       To display the full post instead of the excerpt, open index.php and find this:
   
       < ?php the_excerpt(); ?>
   
       And change it to this (to display the whole post):
   
       < ?php the_content(); ?>
       ```
   
 *  Thread Starter [ryanbrown](https://wordpress.org/support/users/ryanbrown/)
 * (@ryanbrown)
 * [16 years, 9 months ago](https://wordpress.org/support/topic/no-read-more/#post-1176655)
 * Yaaaaaaaaaaaaaaay!
 * Thanks songdogtech!!!
 *  [ninjawanda](https://wordpress.org/support/users/ninjawanda/)
 * (@ninjawanda)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/no-read-more/#post-1176876)
 * I can’t take it anymore! Mine already saiy the_content but it’s still not working!
 *     ```
       <?php get_header(); ?>
       <div id="mid" class="fix">
       	<div id="mainCol" class="fix"><a name="main"></a>
       	<?php if (have_posts()) : ?>
       	<?php while (have_posts()) : the_post(); ?>
       		<div id="postMain">
               <div class="post" id="post-<?php the_ID(); ?>">
       			<div class="postMeta"><span class="date"><?php the_time('M j, Y') ?></span><span class="comments"><?php comments_popup_link('0', '1', '%'); ?></span></div>
       			<h2><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title() ?></a></h2>
                   <h5><?php the_tags(); ?></h5>
       			<div id="mainEntry" class="entry">
                   <div id="introIMG"><img src="<?php $key="thumbnail"; echo get_post_meta($post->ID, $key, true); ?>"/></a></div>
       			<p>< ?php_the_content(); ?></p></a>
       			</div>
       		</div>
               </div>
       		<?php endwhile; ?>
       		<?php else : ?>
       		<div class="post">
       			<div class="postMeta"><span class="date">No Matches</span></div>
       			<h2>No matching results</h2>
       			<div class="entry">
       			<p>You seem to have found a mis-linked page or search query with no associated results. Please trying your search again. If you feel that you should be staring at something a little more concrete, feel free to email the author of this site or browse the archives.</p>
       			</div>
       		</div>
       		<?php endif; ?>
   
               <div id="more_reading">
       			<?php next_posts_link('<span class="navforward"></span>') ?><?php previous_posts_link('<span class="navback"></span>') ?>
       		</div>
       	</div>
       	<?php include (TEMPLATEPATH . '/second.php'); ?>
       </div>
       <?php get_footer(); ?>
       ```
   
 * [http://test.heavenly-sword.nl](http://test.heavenly-sword.nl)
 *  [ninjawanda](https://wordpress.org/support/users/ninjawanda/)
 * (@ninjawanda)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/no-read-more/#post-1176877)
 * Soz, this is the original code that came with the theme:
 *     ```
       <?php get_header(); ?>
       <div id="mid" class="fix">
       	<div id="mainCol" class="fix"><a name="main"></a>
       	<?php if (have_posts()) : ?>
       	<?php while (have_posts()) : the_post(); ?>
       		<div id="postMain">
               <div class="post" id="post-<?php the_ID(); ?>">
       			<div class="postMeta"><span class="date"><?php the_time('M j, Y') ?></span><span class="comments"><?php comments_popup_link('0', '1', '%'); ?></span></div>
       			<h2><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title() ?></a></h2>
                   <h5><?php the_tags(); ?></h5>
       			<div id="mainEntry" class="entry">
                   <div id="introIMG"><a href="<?php the_permalink() ?>" class="Tips2" title="Read More :: Click here to read the rest of this entry."><img src="<?php $key="thumbnail"; echo get_post_meta($post->ID, $key, true); ?>"/></a></div>
       			<a href="<?php the_permalink() ?>" class="Tips2" title="Read More :: Click here to read the rest of this entry."><p><?php the_content_rss('', TRUE, '', 200); ?></p></a>
       			</div>
       		</div>
               </div>
       		<?php endwhile; ?>
       		<?php else : ?>
       		<div class="post">
       			<div class="postMeta"><span class="date">No Matches</span></div>
       			<h2>No matching results</h2>
       			<div class="entry">
       			<p>You seem to have found a mis-linked page or search query with no associated results. Please trying your search again. If you feel that you should be staring at something a little more concrete, feel free to email the author of this site or browse the archives.</p>
       			</div>
       		</div>
       		<?php endif; ?>
   
               <div id="more_reading">
       			<?php next_posts_link('<span class="navforward"></span>') ?><?php previous_posts_link('<span class="navback"></span>') ?>
       		</div>
       	</div>
       	<?php include (TEMPLATEPATH . '/second.php'); ?>
       </div>
       <?php get_footer(); ?>
       ```
   
 * The one above is the one ive been dicking around with
 *  [esmi](https://wordpress.org/support/users/esmi/)
 * (@esmi)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/no-read-more/#post-1176878)
 * Try using
 * `<p><?php the_content(); ?></p></a>`
 * (No space between `<` and `?` and no `_` between `php` and `the`)
 *  [ninjawanda](https://wordpress.org/support/users/ninjawanda/)
 * (@ninjawanda)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/no-read-more/#post-1176879)
 * Thank you. I’ve tried that but now this happens: [](http://test.heavenly-sword.nl)
 *  [ninjawanda](https://wordpress.org/support/users/ninjawanda/)
 * (@ninjawanda)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/no-read-more/#post-1176880)
 *  [ninjawanda](https://wordpress.org/support/users/ninjawanda/)
 * (@ninjawanda)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/no-read-more/#post-1176881)
 * [http://test.heavenly-sword.nl](http://test.heavenly-sword.nl) ?
 *  [ninjawanda](https://wordpress.org/support/users/ninjawanda/)
 * (@ninjawanda)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/no-read-more/#post-1176882)
 * hmmppfff 🙁
 *  [esmi](https://wordpress.org/support/users/esmi/)
 * (@esmi)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/no-read-more/#post-1176883)
 * You have some [validation errors](http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Ftest.heavenly-sword.nl%2F)
   on that page that may be causing your current problems.
 *  [ninjawanda](https://wordpress.org/support/users/ninjawanda/)
 * (@ninjawanda)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/no-read-more/#post-1176884)
 * Hey, ive been trying out new themes on my test site so the one that im asking
   the qeustion for is ninjawanda.com. as you can see now the newest post doesnt
   look very good on the main page…

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

The topic ‘No “Read More”’ is closed to new replies.

 * 12 replies
 * 4 participants
 * Last reply from: [ninjawanda](https://wordpress.org/support/users/ninjawanda/)
 * Last activity: [16 years, 7 months ago](https://wordpress.org/support/topic/no-read-more/#post-1176884)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
