我想修改在后期版本中添加的简码的输出。
我在 shortcodes.php 中有这个功能:
function pi_app_store_petit($atts, $content = null)
{
extract(shortcode_atts(array(
'url' => 'url=""'
), $atts ) );
return "<a href='$url' target='itunes_store'>".do_shortcode($content)."</a>";
}
add_shortcode('app_store_petit', 'pi_app_store_petit');
这只会在后期版本中插入 [app_store_petit][/app_store_petit],
但我想要 [app_store_petit url=" " ][/app_store_petit]。
我要改变什么?谢谢!:)