我正在使用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');
}
}