我想在WordPress中以简码插入简码。 这是我的代码,我想插入简码代替“ [SC]”。
function offerbox($atts, $content = ''){
extract(shortcode_atts(array(
'text' => 'My text',
'text2' => 'My another text',
'button' => '[SC]'
), $atts));
$html = '<div class="mydiv"><h2>' . $text . '</h2>' . $text2 . $button . '</div>';
return $html;
}
add_shortcode('offerbox', 'offerbox');
THX