-6ren">
gpt4 book ai didi

php - Wordpress:single.php 不显示 the_content()

转载 作者:IT王子 更新时间:2023-10-28 23:55:06 25 4
gpt4 key购买 nike

我正在创建自定义 Wordpress 主题,但我似乎无法让 single.php 模板工作。下面是我写的代码。标题出现了,但内容没有出现。任何想法为什么不是?

<?php
/**
* The Template for displaying all single posts.
*/

get_header(); ?>

<div id="content" role="main">
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>

<div class="entry">
<?php the_content(); ?>
</div>

<p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
</div>
</div><!-- #content -->

输出截图见这里:

enter image description here

最佳答案

the_content() 没有显示,因为它必须在 The Loop 内 - take a look at the docs here »

您需要将代码更改为:

if ( have_posts() ) : while ( have_posts() ) : the_post();
the_content();
endwhile;
else:
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
endif;

如果您始终确定有要显示的内容,则可以省略 else :) 或者只需查看原始 single.php 即可找到 < em>循环总是围绕着the_content()

编辑:

这是您可能想要使用/开始的整个 single.php:

<?php
/**
* The Template for displaying all single posts.
*/

get_header(); ?>

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

<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>

<div class="entry">
<?php the_content(); ?>
</div>

<p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
</div>
<?php endwhile; endif; ?>

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

关于php - Wordpress:single.php 不显示 the_content(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8246386/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com