php 【WordPress的】archive.php

Posted

tags:

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

<?php get_header(); ?>

    <main>

        <h1><?php the_archive_title(); ?></h1>

        <?php if ( have_posts() ): while ( have_posts() ): the_post(); ?>

            <article <?php post_class(); ?>>
                <a href="<?php the_permalink(); ?>">
                    <?php if ( has_post_thumbnail() ): ?>
                        <figure><?php the_post_thumbnail(); ?></figure>
                    <?php endif; ?>
                    <h2><?php the_title(); ?></h2>
                </a>
            </article>

        <?php endwhile; endif; ?>

        <?php the_posts_pagination([
            'prev_text' => '<i class="fas fa-angle-left"></i><span>前へ</span>',
            'next_text' => '<i class="fas fa-angle-right"></i><span>次へ</span>'
        ]); ?>

    </main>

<?php get_sidebar(); ?>

<?php get_footer(); ?>

以上是关于php 【WordPress的】archive.php的主要内容,如果未能解决你的问题,请参考以下文章

php Wordpress Backdoor添加用户#wordpress #php

php [WORDPRESS] - 脚注中的Wordpress动态版权日期#wp #footer #wordpress#functions.php

如何安装wordpress?

链接到 archive.php - WordPress

将 PHP 页面添加到 Wordpress 模板

PHP Wordpress - 自定义WordPress登录页面的徽标