我的帖子有多个附件,然后我修改了每个附件页面,其中包含我插入数据库的内容,但当我尝试调用该帖子时,它会显示父帖子,
我试试这个:
global $post;
if ($post->post_parent) {
$parent = get_page($post->post_parent);
$attc = apply_filters('the_content', $parent->post_content);
echo $attc;
}
如何从附件db调用post_content?谢谢