如何将plugin_dir_url更改为另一个文件夹?

时间:2012-12-04 03:14:39

标签: wordpress

我有这个用于shorcodes的wordpress插件。我试图在我的主题中实现它而不需要安装它。

如何将这两行代码更改为“plugin_dir_url”,以便从我的模板文件夹中获取文件?

class SYMPLE_TinyMCE_Buttons {
function __construct() {
    add_action( 'init', array(&$this,'init') );
}
function init() {
    if ( ! current_user_can('edit_posts') && ! current_user_can('edit_pages') )
        return;     
    if ( get_user_option('rich_editing') == 'true' ) {  
        add_filter( 'mce_external_plugins', array(&$this, 'add_plugin') );  
        add_filter( 'mce_buttons', array(&$this,'register_button') ); 
        **wp_localize_script( 'jquery', 'sympleShortcodesVars', array('template_url' => plugin_dir_url( __FILE__ ) ) );**
    }  
}  
function add_plugin($plugin_array) {  
   **$plugin_array['symple_shortcodes'] = plugin_dir_url( __FILE__ ) .'js/symple_shortcodes_tinymce.js';**
   return $plugin_array; 
}
function register_button($buttons) {  
   array_push($buttons, "symple_shortcodes_button");
   return $buttons; 
}   

非常感谢。

1 个答案:

答案 0 :(得分:0)

get_bloginfo("template_directory")应该这样做。

Codex:get_bloginfo()