mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 22:30:04 +00:00
Don't pass bogus argument to the_excerpt. props zeo, fixes #13883.
git-svn-id: https://develop.svn.wordpress.org/trunk@15247 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -83,7 +83,7 @@
|
||||
$total_images
|
||||
); ?></em></p>
|
||||
|
||||
<?php the_excerpt( '' ); ?>
|
||||
<?php the_excerpt(); ?>
|
||||
<?php endif; ?>
|
||||
</div><!-- .entry-content -->
|
||||
|
||||
@@ -130,7 +130,7 @@
|
||||
|
||||
<?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?>
|
||||
<div class="entry-summary">
|
||||
<?php the_excerpt( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?>
|
||||
<?php the_excerpt(); ?>
|
||||
</div><!-- .entry-summary -->
|
||||
<?php else : ?>
|
||||
<div class="entry-content">
|
||||
|
||||
Reference in New Issue
Block a user