简码排序(WordPress)

时间:2018-10-11 06:13:03

标签: wordpress shortcode

我想在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

0 个答案:

没有答案