如何在存档页面中的帖子底部添加html代码?

时间:2018-03-19 作者:Jomus

当我阅读归档页时,我希望在每个摘录文本的底部添加一个格式化文本。所有帖子的代码都是一样的。

通过修改类别,我找到了基于类别的存档页。我的子主题文件夹中的php文件。但我不知道在哪里为基于日期的归档或我的主题的所有博客归档页面编写代码。

谢谢你的帮助。

2 个回复
SO网友:Amol Sawant

打开存档。从主题目录中的php代码如下所示

<?php
/*
Template Name: Archives
*/
get_header(); ?>

<div id="container">
    <div id="content" role="main">

        <?php the_post(); ?>
        <h1 class="entry-title"><?php the_title(); ?></h1>

        <?php get_search_form(); ?>

        <h2>Archives by Month:</h2>
        <ul>
            <?php wp_get_archives(\'type=monthly\'); ?>
        </ul>

        <h2>Archives by Subject:</h2>
        <ul>
             <?php wp_list_categories(); ?>
        </ul>

    </div><!-- #content -->
</div><!-- #container -->

<?php get_sidebar(); ?>
<?php get_footer(); ?>
添加html代码

</div><!-- #content -->
您的代码位于此处。。。。。。。

</div><!-- #container -->
。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。

投票支持我的答案i。。

SO网友:Kuldip Z

您需要复制存档。php的父主题,然后粘贴到子主题。现在对子主题的存档进行所需的更改。php

结束

相关推荐

如何使用PRE_GET_POSTS更改类别页面的POSTS_PER_PAGE,其中‘POSTS_PER_PAGE’将是动态的

我在WordPress的编辑类别页面中有带有自定义字段的类别模板。有一个自定义字段用于在分类页面中显示每页的帖子数量。我正在使用pre_get_posts 更改默认值posts_per_page 对于类别页面。以下是我的功能:function my_limit_posts_per_cat_page( $query ){ $cat_id = get_query_var(\'cat\'); $cat_data = get_option(\"category_$cat_id\"); $c