我目前正在努力将 wordpress 与我的网站集成,但我在这里碰壁了。
我需要初始博客页面(基本上只是 WP 的 index.php)来获取<!--more-->
快速标签,但我似乎无法让它工作。
我遵循了 WP Codex,但这对我没有任何帮助。
所以这里是模板文件的一部分:content.php
<?php if ( is_search() ) : // Only display Excerpts for Search ?>
<div class="entry-summary">
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail('thumbnail');
}
the_excerpt();
?>
</div><!-- .entry-summary -->
<?php else : ?>
<div class="entry-content">
<div class="bthumb2">
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail(array(220, 130));
}
?>
</div>
<?php
the_content("READ MORE");
?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', 'tinfoilhats' ),
'after' => '</div>',
) );
?>
</div><!-- .entry-content -->
<?php endif; ?>
但是<!--more-->
一旦我加载页面,它就会一直在帖子中显示标签。
我已经尝试过使用 global $more 的东西,但这对我不起作用。
<?php while ( have_posts() ) : the_post(); ?>
<?php
global $more;
$more = 0;
get_template_part( 'content', get_post_format() );
?>
<?php endwhile; ?>
那么我做错了什么?