Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Removed the more_link_text parameter from the_content
At least until we know what we’re going to be doing with it, ok?
Loading branch information
Showing
3 changed files
with
3 additions
and
3 deletions .
+1
−1
index.php
+1
−1
page.php
+1
−1
single.php
@@ -19,7 +19,7 @@
< h2 > < a href ="<?php the_permalink () ?> " rel ="bookmark " title ="Permanent link to “<?php the_title_attribute (); ?> ” "> <?php the_title (); ?> </ a > </ h2 >
<?php }
the_content ('Read the rest of this item' );
the_content ();
if (!has_post_format ('aside' ) && !has_post_format ('image' )) {
?>
@@ -11,7 +11,7 @@
<?php if (have_posts ()) : while (have_posts ()) : the_post (); ?>
< article <?php post_class () ?> id ="post- <?php the_ID (); ?> ">
< h2 > <?php if (the_title ( '' , '' , false ) !='' ) the_title (); else echo 'Untitled' ;?> </ h2 >
<?php the_content ('<p>Read the rest of this page</p>' ); ?>
<?php the_content (); ?>
<?php wp_link_pages (array ('before' => '<p>Pages: ' , 'after' => '</p>' , 'next_or_number' => 'number' )); ?>
</ article >
<?php endwhile ; endif ; ?>
@@ -16,7 +16,7 @@
< p title ="<?php the_time ('c' ) ?> "> <?php the_time ('l, F jS, Y' ) ?> </ p >
< h2 > <?php if (the_title ( '' , '' , false ) !='' ) the_title (); else echo 'Untitled' ;?> </ h2 >
<?php the_content ('<p>Read the rest of this item</p>' ); ?>
<?php the_content (); ?>
<?php wp_link_pages (array ('before' => '<p>Pages: ' , 'after' => '</p>' , 'next_or_number' => 'number' )); ?>
< p > This item was posted by < span class ="vcard author "> < cite class ="fn "> < a class ="url " href ="<?php the_author_meta ('user_url' ) ?> "> <?php the_author_meta ('display_name' ); ?> </ a > </ cite > </ span > .</ p >
Toggle all file notes