尝试在wordpress中获取帖子但不能正常工作

时间:2017-02-06 11:45:12

标签: php wordpress

我对wordpress相当新,并试图获得帖子。 我是这样做的 我正在使用的主题是classiad 他们按照这样的方式在那里进行getiing

$plan_featured_ads = get_post_meta($post->ID, 'featured_ads', true); 

使用同样的方法我没有得到帖子

$post_content = get_post_field($post->ID, 'post_content');

这没有任何回报,我做错了什么?

1 个答案:

答案 0 :(得分:1)

您似乎已在WP_Post中获得了$post的实例,因此要访问post_content,您可以执行以下操作:

// If you need an un-filtered version of the post:
$post->post_content;

// If you need a filtered version of the post for displaying on screen:
apply_filters('the_content', $post->post_content);