Код сортировки в шорткоде (WordPress) - PullRequest
0 голосов
/ 11 октября 2018

Я хотел бы вставить шорткод в шорткод в 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

...