假设您创建了自己的Gallery插件,该插件使用了自己的短代码(例如: [my_gallery] )
如何在[gallery]到[my_gallery]的编辑器中修改默认的WordPress库短代码插入,以便客户端不必混淆必须记住自定义短代码并意外地进行错误的库插入?
答案 0 :(得分:4)
首先remove图库短代码,然后添加自己的...
remove_shortcode('gallery', 'gallery_shortcode'); // removes the original shortcode
add_shortcode('gallery', 'my_awesome_gallery_shortcode'); // add your own shortcode
function my_awesome_gallery_shortcode($attr) {
$output = 'Codex is your friend' ;
return $output;
}
或作为替代方案,只需将您的短代码重命名为不那么令人困惑的东西: - )