不确定你是否需要这样,但看看吧。
// Can be put into function.php
if ( !is_admin() ) {
add_action( "wp_enqueue_scripts", "enqueue_scripts", 11 );
}
function enqueue_scripts() {
// Theme CSS (style.css)
wp_enqueue_style( \'style-file\', get_template_directory_uri() . \'/style.css\',false,\'1.0\',\'all\' );
// JS
wp_register_script( \'script\', get_template_directory_uri() . \'/your-script.js\', array(\'jquery\') );
wp_enqueue_script( \'script\' );
}
或使用。。。
// Used to include PHP
include_once(TEMPLATEPATH . \'script.php\');
有时,告诉别人也很有帮助。htaccess文件应如何处理文件。把这个扔进你的。htaccess文件。
# handler for phpsuexec..
<FilesMatch "\\.(css|style)$">
SetHandler application/x-httpd-php
</FilesMatch>