小编Bru*_*aro的帖子

Wordpress,通过名称或 URL 获取帖子内容

我在这里看到我可以使用帖子 ID 在 WordPress 中获取帖子的内容。就像是:

<?php $my_postid = 83;//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(']]>', ']]&gt;', $content);
echo $content;?>
Run Code Online (Sandbox Code Playgroud)

我想要同样的东西,但是通过它的名字来获取帖子。

php wordpress custom-post-type

3
推荐指数
1
解决办法
6278
查看次数

标签 统计

custom-post-type ×1

php ×1

wordpress ×1