使用函数将文章/页面显示到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>\';
}

结束

相关推荐

在php和wordPress中的Rhyzz可重复字段

我很难弄明白为什么我的可重复字段javascript不能工作。我正在使用以下插件:Rhyzz(可重复字段):http://www.rhyzz.com/repeatable-fields.html. 我浏览了一下网站,发现他在html中运行了脚本,也在同一个页面上运行了javascript。我的网站要大得多。我正在使用Wordpress,我做了以下操作来调用脚本functions.php. wp_enqueue_script( \'jquery\', \'https://code.jquery.com/jq