php 【WordPress的】的single.php

Posted

tags:

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

<?php get_header(); ?>

    <main>

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

            <article <?php post_class(); ?>>
                <?php if ( has_post_thumbnail() ): ?>
                    <figure><?php the_post_thumbnail(); ?></figure>
                <?php endif; ?>
                <?php the_category(); ?>
                <h1><?php the_title(); ?></h1>
                <time datetime="<?php echo esc_attr( get_the_date( DATE_W3C ) ); ?>">
                    <i class="far fa-clock"></i>
                    <?php echo esc_html( get_the_date() ); ?>
                </time>
                <?php the_content(); ?>
            </article>

        <?php endwhile; endif; ?>

        <?php the_post_navigation(); ?>

    </main>

<?php get_sidebar(); ?>

<?php get_footer(); ?>

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

php Wordpress Backdoor添加用户#wordpress #php

如何安装wordpress?

链接到 archive.php - WordPress

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

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

将 PHP 页面添加到 Wordpress 模板