【发布时间】:2014-03-17 09:26:11
【问题描述】:
使用下面的内容,我可以将列表和帖子中的文本填充到 Wordpress 的侧边栏中。
我已将<!--more--> 标签放入我的帖子中,但使用下面的脚本似乎被忽略了。
有人可以帮忙
Wordpress 中的 PHP
<?php $the_query = new WP_Query( 'showposts=2' ); ?>
<?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?>
<li>
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
<p><?php the_content('<span class="readmore strong">'.__('Read more').'</span>'); ?></p>
</li>
<?php endwhile;?>
【问题讨论】: