我对wordpress相当新,并试图获得帖子。 我是这样做的 我正在使用的主题是classiad 他们按照这样的方式在那里进行getiing
$plan_featured_ads = get_post_meta($post->ID, 'featured_ads', true);
使用同样的方法我没有得到帖子
$post_content = get_post_field($post->ID, 'post_content');
这没有任何回报,我做错了什么?
答案 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);