2

私はshorcodes用のこのワードプレスプラグインを持っています。インストールせずにテーマに実装しようとしています。

「plugin_dir_url」と表示されているこの2行のコードを変更して、テンプレートフォルダーからファイルを取得するにはどうすればよいですか?

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; 
}   

どうもありがとう。

4

1 に答える 1

0

get_bloginfo("template_directory")それをする必要があります。

コーデックス:get_bloginfo()

于 2012-12-04T03:20:57.730 に答える