【发布时间】:2011-07-15 12:16:39
【问题描述】:
我在自己的主题模板中使用“循环”来获取来自 WordPress 的最后三个帖子。
<?php
$args = array( 'numberposts' => 3 );
$myposts = get_posts( $args );
foreach( $myposts as $post ) : setup_postdata($post); ?>
<!-- DATE -->
<div class="date">
<?php the_time('m F Y');?>
</div>
<!-- TITLE -->
<div class="title">
<?php the_title(); ?>
</div>
<!-- SNIPPET -->
<div class="content">
<?php the_excerpt(); ?>
</div>
<?php endforeach; ?>
一切正常 - 除了the_excerpt()。我需要帖子中大约 15-20 字的纯文本来显示为预览,而不是完整的摘录或整个帖子的内容正文。我该怎么做?
【问题讨论】:
标签: php arrays wordpress function foreach