shortcode_atts
是否可以在另一个函数中使用变量?这是我的想法:
发帖
[图库 ids="1,2,3,...n"]
函数 get_gallery_ids()
//get the gallery-ID's from post
function get_gallery_ids($atts) {
extract(shortcode_atts(array(
'ids' => ''
), $atts));
return $ids;
}
函数explode_ids()
//example function with ids
function explode_ids($ids) {
$ids = explode(',' $ids);
}
我该如何实施?回报只是回声。
更新
上面的代码是我自己的新 gallery_shortcode 的一部分。
remove_shortcode('gallery', 'gallery_shortcode');
add_shortcode('gallery', 'get_gallery_ids');