PHP 基本的Wordpress循环
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 基本的Wordpress循环相关的知识,希望对你有一定的参考价值。
<?php get_header(); ?>
<?php if(have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<?php the_content(''); ?>
<h4>Posted in <?php the_category(', ') ?></h4>
<?php endwhile; ?>
<?php endif; ?>
<?php get_footer(); ?>
以上是关于PHP 基本的Wordpress循环的主要内容,如果未能解决你的问题,请参考以下文章
PHP Wordpress基本循环
添加第二个 Wordpress 循环,显示 single.php 中的最新帖子
php Wordpress循环/循环
php 使用Wordpress循环的Bootstrap列
PHP Wordpress循环,样式显示不同的帖子
PHP Wordpress:检索循环外的帖子类别