PHP wordpress中的自动短代码选择
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP wordpress中的自动短代码选择相关的知识,希望对你有一定的参考价值。
// shortcode button
add_action('media_buttons','add_sc_select',11);
function add_sc_select(){
global $shortcode_tags;
/* ------------------------------------- */
/* enter names of shortcode to exclude bellow */
/* ------------------------------------- */
$exclude = array("wp_caption", "embed");
echo '&nbsp;<select id="sc_select"><option>Shortcode</option>';
foreach ($shortcode_tags as $key => $val){
if(!in_array($key,$exclude)){
$shortcodes_list .= '<option value="['.$key.'][/'.$key.']">'.$key.'</option>';
}
}
echo $shortcodes_list;
echo '</select>';
}
add_action('admin_head', 'button_js');
function button_js() {
echo '<script type="text/javascript">
jQuery(document).ready(function(){
jQuery("#sc_select").change(function() {
send_to_editor(jQuery("#sc_select :selected").val());
return false;
});
});
</script>';
}
以上是关于PHP wordpress中的自动短代码选择的主要内容,如果未能解决你的问题,请参考以下文章
WordPress 和 Ajax - 重新加载短代码内容
PHP WordPress模板中的短代码
php 一个WordPress自定义短代码,用于显示wp_usermeta表中的一段用户元数据。依赖Ultimate Member插件
使用WordPress中的某些属性创建短代码
从youtube嵌入缩略图和视频(php - Wordpress)
php 事件短代码 - 事件日历WordPress插件