主页/WordPress笔记/博客文章/综合文章/如何在WordPress页面中添加摘要(分步指南)

如何在WordPress页面中添加摘要(分步指南)

Bug编译狮

Bug编译狮

要在WordPress页面中添加摘要,你需要遵循以下步骤:

  1. 登录到您的WordPress后台。
  2. 导航到“编辑”菜单下的“页面”。
  3. 选择您想要添加摘要的页面。
  4. 在页面编辑器中找到“内容”区域。
  5. 将鼠标悬停在“内容”区域上,然后点击“插入文本”按钮。
  6. 输入您希望显示在摘要中的文字。请确保这些文字不超过50个字符。

下面是实际操作步骤和预期结果:

  • 打开WordPress后台,选择要编辑的页面。
  • 进入页面编辑器后,在页面顶部的“内容”区域输入摘要文本。
  • 按下回车键以开始新的段落。
  • 继续添加更多的文本直到达到50个字符或更多。
  • 点击保存更改。

完成以上步骤后,您应该会在页面顶部看到一个新的“摘要”部分,其中包含了您刚刚输入的所有文本。请注意,摘要会自动显示在页面底部,如果您希望它不显示,请取消勾选相应的选项。

这个步骤简单易行,但需要注意的是,摘要不能超过50个字符,否则可能会影响页面的整体布局和用户体验。

黑板前的Bug语法讲师

黑板前的Bug语法讲师

在WordPress中添加摘要可以帮助用户快速了解网站的内容概要,而无需阅读全文。下面将详细介绍如何在WordPress页面中添加摘要。

步骤1: 添加“摘要”标签

首先,在您的WordPress主题或插件文件夹中找到并打开functions.php文件。

  • 打开WordPress管理后台,然后转到右上角的菜单栏,点击“编辑器”。

步骤2: 添加“摘要”标签

要在每个文章页面的顶部添加一个“摘要”标签,请按照以下步骤操作:

  1. functions.php文件中的add_theme_support()函数中添加支持:

    function add_sitemap_support() {
    $pages = array(
        'home',
        'about',
        'contact'
    );
    wp_add_inline_sitemap_page($pages);
    }
    add_action('after_setup_theme', 'add_sitemap_support');
  2. 接下来,创建一个新的post_types选项组,以便可以为每种类型的帖子添加摘要。例如,对于新闻文章,可以这样做:

    
    $news_post_types = array(
    'post_type' => 'post',
    'publicly_queryable' => true,
    'show_in_nav_menus' => false,
    'supports' => array( 'title', 'editor', 'author' ),
    'has_archive' => true,
    'labels' => array(
        'name' => 'News Articles',
        'singular_name' => 'Article',
    ),
    'menu_icon' => 'dashicons-media-video',
    'rewrite' => array( 'slug' => 'news', 'with_front' => true ),
    );

wp_register_post_type( ‘news’, $news_post_types );

// Add the “news” slug to your navigation menus. add_menu_page( ‘News’, ‘News’, ‘manage_options’, ‘news’, ‘news_page’ );

3. 创建一个名为`news_page.php`的新模板文件,并添加如下代码来显示文章列表:
```php
<?php
get_header();
?>
<div class="container">
    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
        <h2><?php the_title(); ?></h2>
        <div class="content">
            <?php the_content(); ?>
        </div>
    <?php endwhile; endif; ?>
</div>
<?php get_footer(); ?>
  1. 最后,为了使“摘要”标签出现在文章页面的顶部,需要修改functions.php文件中的add_theme_support()函数以添加支持:
    function add_sitemap_support() {
    $pages = array(
        'home',
        'about',
        'contact',
        'news',
    );
    wp_add_inline_sitemap_page($pages);
    }
    add_action('after_setup_theme', 'add_sitemap_support');
  2. 现在,只需通过点击“文章”菜单下的“添加新文章”按钮并在文章页面顶部添加“摘要”标签即可看到效果。

结论

通过以上步骤,您可以在WordPress页面中轻松地添加摘要。这种方法不仅提高了用户体验,还增加了网站的吸引力和可见性。