$ _GET在wp定制器中不起作用

时间:2016-12-30 10:07:05

标签: php wordpress get

我正在使用wp_footer操作在网站顶部显示一个栏。

我使用了is_customize_preview()并获取了自定义程序的网址中的条形码ID,但它没有返回任何内容。

以下是我的代码:

add_action( 'wp_footer',  'jws_ob_content');
function jws_ob_content() {
  if( is_customize_preview() ) {
      $offer = get_post( $_GET['offer_id'] );
      $offer_custom = get_post_custom( $_GET['offer_id'] );
      echo "<pre>";
      print_r( $_GET['offer_id'] );
      exit();
  }
  else {
      $offer = get_post('505');
      $offer_custom = get_post_custom('505');
  }
}

1 个答案:

答案 0 :(得分:0)

我按urlencode对网址进行了编码,然后写了&amp; autofocus [panel] =某个内容和网址的结尾,它的工作正常。