gpt4 book ai didi

php - the_content() 显示在 div 之外

转载 作者:太空宇宙 更新时间:2023-11-03 21:38:11 24 4
gpt4 key购买 nike

我正在使用以下函数来显示内容。内容正确显示但在 div 之外。

<?php
function show_post(){
$query = new WP_Query(array('post_type' => 'circular', 'post_per-page' => -1));

if($query->have_posts()){
while($query->have_posts()){
$query->the_post();

$circular_slider .= '<div class="ca-item ca-item-1"><div class="ca-item-main"><div class="ca-icon"></div><p>';
$circular_slider .= ''.the_content().'';
$circular_slider .= '</p></div></div>';
}
}
wp_reset_postdata();
return $circular_slider;
}
?>

最佳答案

the_content 直接输出内容——您要改用 get_the_content,因为它返回内容。

http://codex.wordpress.org/Function_Reference/the_content#Alternative_Usage

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

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