使用函数将文章/页面显示到div中 时间:2017-06-14 作者:DMR 我是php新手,希望将页面内容显示到div中。内容的调用使用函数,这是我的代码,但它不起作用,我如何修复它?function fields_after_order_details(){ echo \'<div class="tandc">\'. $my_id = 2731; $post_id_2731 = get_post($my_id, ARRAY_A); $title = $post_id_2731[\'post_content\']; .\'</div>\'; } 1 个回复 SO网友:mrben522 我不确定ARRAY\\u A应该是什么,除非我们缺少更多信息,否则似乎没有必要。而且get_post 返回对象,而不是数组。尝试以下操作:function fields_after_order_details(){ $my_id = 2731; $post_id_2731 = get_post($my_id); $title = $post_id_2731->post_content; echo \'<div class="tandc">\' . $title . \'</div>\'; } 结束 文章导航