所以我一直在尝试解决这个问题,我猜这涉及到一些高级过滤器和东西,但是这里有。当我手动使用 < !--more--> 标签时,如何使我编码到我的 Wordpress 博客内容循环中的“阅读更多”按钮显示:无?
当我现在使用它时,两个“阅读更多”按钮都是可见的。
<div class="entry-content">
<?php if ( is_single() ) : ?>
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php else : ?>
<h1 class="entry-title">
<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'dsgn' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
</h1>
<?php endif; // is_single() ?>
<div class="entry-meta">
<span><?php the_time('F jS, Y') ?> by <?php the_author_posts_link() ?></span>
</div>
<img class="post-icon" src="<?php echo get_template_directory_uri(); ?>/images/pencil.png">
<div class="seperator">
<div class="sepen"></div>
<div class="septo"></div>
</div>
<div class="entry-excerpt">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php the_content( __( 'read more <span class="meta-nav">→</span>', 'dsgn' ) ); ?>
<?php echo '<a href="' . get_permalink() . "#more-{$post->ID}\" class=\"more-link\">".__( '<span>read more</span>', 'dsgn' ). '</a>' ?>
<div class="entry-footer-fix"></div>
</div>