gpt4 book ai didi

php - Wordpress如何让段落出现在页面的某个区域?

转载 作者:太空宇宙 更新时间:2023-11-04 15:43:53 25 4
gpt4 key购买 nike

我目前正在使用自定义的 CSS 布局创建自己的 Wordpress 页面。如何使通过“添加页面”生成的“内容”出现在我的布局或 div 的特定部分?我在 PHP 中使用哪些代码来使我在“添加页面”中键入的段落(或 html 代码)出现在该特定的 div 中?

下图将有助于支持我的解释:

generate-paragraph inside a certain div

我希望有人能提供帮助。谢谢!

最佳答案

如果您在后端使用 PHP 编写页面,请使用此代码获取帖子。如果您使用的是页面编辑器,则有一种方法可以在您的帖子中启用 PHP(但会危及安全性):

$my_postid = 12;//This is page id or post id
$content_post = get_post($my_postid);
$content = $content_post->post_content;
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
echo $content;

关于php - Wordpress如何让段落出现在页面的某个区域?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11925012/

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