WordPress中的摘录

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WordPress中的摘录相关的知识,希望对你有一定的参考价值。

  1. <?php
  2. //display all post titles, and if an excerpt exists, show it
  3. $posts=get_posts('post_type=post&showposts=-1');
  4. if ($posts) {
  5. foreach($posts as $post) {
  6. setup_postdata($post);
  7. ?>
  8. <p><?php the_time('m.d.y') ?> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
  9. <?php
  10. if ($post->post_excerpt) {
  11. echo 'excerpt is:' . $post->post_excerpt;
  12. }
  13. }
  14. }
  15. ?>

以上是关于WordPress中的摘录的主要内容,如果未能解决你的问题,请参考以下文章

WordPress中的摘录

php wordpress自定义中的多个摘录长度

wordpress中的多段摘录长度

为wordpress3.0中的页面添加摘录

在 Wordpress 博客之外查询 Wordpress 数据库以返回最新的博客链接,摘录

Wordpress:仅适用于 Woocommerce 品牌页面的摘录