我正在使用自定义帖子类型在我的网站上显示横幅。内容可以是文本、图像以及简码(例如按钮简码)。
如果我用我的简码显示内容,一切看起来都很好。横幅本身内的简码除外。
有什么方法可以呈现该短代码?
这是我的简码:
// [banner id="" class=""]
function shortcode_banner( $atts, $content ){
extract(shortcode_atts(array(
'id' => '',
'class' => '',
), $atts));
$banner_id = $id;
$content = get_post_field('post_content', $banner_id);
return '<div class="'.$class.'">'.wpautop($content).'</div>';
}
add_shortcode( 'banner', 'shortcode_banner' );