5

我是使用 Wordpress 的新手,我创建了一个包含一长串项目的页面。

* Item 1
* Item 2
* Item 3
* Item 4 ... and so on

我计划将此页面与一长串项目嵌入到单独的页面上。我要怎么做?我跟着网上的教程,想到了把这段代码add_post_type_support( 'page', 'excerpt' );放在functions.php. 放置代码后,创建/编辑页面时将提供一个新选项。但在那之后,我怎样才能显示我的页面摘录?

4

1 回答 1

17

首先将此代码放在您的主题 function.php 文件中。

add_action( 'init', 'my_add_excerpts_to_pages' );
function my_add_excerpts_to_pages() {
     add_post_type_support( 'page', 'excerpt' );
}

之后启用页面摘录,请参见下面的定义图像:

显示摘录

使用此代码获取页面摘录:

<?php echo get_the_excerpt(); ?>

<?php 
    query_posts("page_id=36");
    while ( have_posts() ) : the_post()
?>
    <h1><a href="<?php echo the_permalink(); ?>"><?php echo get_the_title(); ?></a></h1>
    <?php the_excerpt(); ?>

<?php
    endwhile; 
    wp_reset_query();
?>      
于 2013-06-13T11:21:42.583 回答