我正在尝试<!--more-->
在 WP 中使用,但它不起作用。我正在使用 Wordpress 3.6.1。问题是什么?
帖子编辑器中的文本:
Abc<!--more-->cba
我如何使用:
<?php
$args = array( 'posts_per_page' => 10, 'order'=> 'ASC', 'orderby' => 'title' );
$postslist = get_posts( $args );
foreach ($postslist as $post) : setup_postdata($post); ?>
<div>
<?php the_date(); ?>
<br />
<?php the_title(); ?>
<?php the_excerpt(); ?>
<?php the_content(); ?>
</div>
<?php endforeach; ?>