WordPress中的摘录
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WordPress中的摘录相关的知识,希望对你有一定的参考价值。
<?php //display all post titles, and if an excerpt exists, show it $posts=get_posts('post_type=post&showposts=-1'); if ($posts) { foreach($posts as $post) { setup_postdata($post); ?> <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> <?php if ($post->post_excerpt) { echo 'excerpt is:' . $post->post_excerpt; } } } ?>
以上是关于WordPress中的摘录的主要内容,如果未能解决你的问题,请参考以下文章