gpt4 book ai didi

php - WordPress:get_the_content() 和 the_content() 之间的区别

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:34:21 25 4
gpt4 key购买 nike

我当时正在研究 WordPress 的新主题,并花了很多时间在 get_the_content() 函数上。

  <div class="clearfix">
<div>
<p><?=get_the_content();?></p>
</div>
</div>

似乎它不处理快捷方式,也不处理段落。

然后我将其替换为 the_content();我的段落和快捷方式开始起作用。

  <div class="clearfix">
<div>
<p><?=the_content();?></p>
</div>
</div>

我的问题:函数之间有什么区别,有什么附加处理 the_content();比较 get_the_content();?

最佳答案

虽然@J Quest 提供了充分的答案,但我想详细说明一下。一般来说,WordPress有两种post变量函数:get_函数和the_函数。

get_ 函数,例如 get_the_content()get_the_ID()将返回所需的信息,然后必须对其进行操作并打印到页面上。一些例子:

$content = get_the_content();
$content = apply_filters( 'the_content', $content );
$content = str_replace( 'foo', 'bar', $content );

echo 'Post #'. get_the_ID() . $content;

the_ 函数,例如 the_content()the_ID()实际上 echo 返回的值,如果适用,将为适当的值应用“默认过滤器”。这些函数不需要回显。

echo get_the_ID();

在功能上与

相同
the_ID();

如果您查看有关 the_ID() 的文档,您会发现它实际上只是输出 get_the_ID() 的值。来自来源:

function the_ID() {
echo get_the_ID();
}

在这种情况下,如果您尝试将 the_ 函数设置为变量,您将在整个页面中留下一连串重复的变量。

$id = the_ID();
echo 'Post ID: '.$id;

将输出:

123Post ID: 123

要使用 get_the_content() 并运行短代码,您需要通过 do_shortcode() 运行它函数,或者更好的 the_content 过滤器。

$content = get_the_content();

echo do_shortcode( $content );
// Or:
echo apply_filters( 'the_content', $content );

如果您只需要在模板中吐出帖子内容,无需任何操作,您通常最好使用(没有 echo 或 echo 短标签):

the_content();

关于php - WordPress:get_the_content() 和 the_content() 之间的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50892776/

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