php 【WordPress的】home.php
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 【WordPress的】home.php相关的知识,希望对你有一定的参考价值。
<?php get_header(); ?>
<main>
<?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的】home.php的主要内容,如果未能解决你的问题,请参考以下文章
Wordpress没有使用home.php而是使用index.php作为帖子页面。
从 WordPress function.php 调用函数到 page-home.php
wordpress 插件适用于本地主机,但不适用于远程服务器
请帮助:“在Wordpress中为foreach()提供了无效的参数”
wordpress主题制作:front-page.phphome.phppage.phpindex.php的调用说明
链接到 wordpress 中的另一个页面