【发布时间】:2022-12-20 06:33:59
【问题描述】:
我有一个 wordpress 网站,有一些页面,例如关于页面、博客页面、联系页面等, 所以我担心的是我想要来自特定页面(博客页面)的标题、段落等数据 那么我如何得到这个以便更好地理解我添加一些参考图像 enter image description here enter image description here
我如何获得标题和内容
【问题讨论】:
标签: wordpress custom-wordpress-pages
我有一个 wordpress 网站,有一些页面,例如关于页面、博客页面、联系页面等, 所以我担心的是我想要来自特定页面(博客页面)的标题、段落等数据 那么我如何得到这个以便更好地理解我添加一些参考图像 enter image description here enter image description here
我如何获得标题和内容
【问题讨论】:
标签: wordpress custom-wordpress-pages
你能参考这个https://developer.wordpress.org/reference/functions/get_post/
'42' 是帖子 ID,您可以获得所有标题,内容,...
$post = get_post( 42 );
$output = apply_filters( 'the_content', $post->post_content );
print_r($post);
【讨论】: