• My homepage readmore links says “Continue reading” though that phrase does not exist in the template files. Even if I have <?php the_content('Read more...'); ?> in index.php, it still says “Continue reading” + post title. Where does that come from?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Can you post some code?

    Thread Starter ServeU.net

    (@serveunet)

    from index.php:

    <!-- a post -->
    		<div class="post" id="post-<?php the_ID(); ?>">
    			<div class="postfade"><!-- cosmetic --></div>
    			<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
    			<div class="postinfo clearfix">
    				<a href="#" class="pinfo"><?php the_time('d F Y'); ?></a>
    				<a href="#" class="pinfo">Skrivet av <?php the_author() ?></a>
    			</div>
    			<div class="postcontent clearfix">
    					<?php the_content('Read more...'); ?>
    			</div>
    		</div>

    Looks like it should be working. Are you sure the homepage is using index.php and not a home.php or page.php

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Homepage says “Continue reading” though that phrase does not exist in template’ is closed to new replies.