0
我有一個簡碼,我希望它在傳遞特定屬性添加到簡碼時傳遞不同的類。你是怎樣做的?或者做到這一點的最佳方法是什麼?簡碼API更改具有不同屬性的返回
簡碼:
function one_half_columns($atts, $content = null){
$type = shortcode_atts(array(
'default' => 'col-md-6',
'push' => 'col-xs-6'
), $atts);
return '<div class="' . $type['push'] . '">' . do_shortcode($content) . '</div>';;
}
add_shortcode('one_half', 'one_half_columns');
實施例時WordPress用戶輸入[one_half type="push"]
我希望它使用的push
值在陣列col-xs-6
。
謝謝主席先生。 :) – Xrait 2014-11-01 18:26:53