1
我有一個wordpress插件,我想在其中使用colorbox,爲此我需要在插件中導入javascript和css。在wordpress插件中導入css和javascript
這是我的插件代碼。
<?php
/*
Plugin Name: My Plugin
Plugin URI: http://www.abc.com/
Description: abc
Author: abc
Version: 1.0
Author URI: http://www.abc.com
*/
function calc_form_markup() {
$markup = <<<EOT
<form>
<input type="text" name="author" id="author" value="{$author_default}" size="22" />
<label for="author"><small>Your name*</small></label><br>
<input type="text" name="email" id="email" value="{$email_default}" size="22" /> <label
for="email"><small>Your contact e-mail*</small></label><br>
<input type="text" name="subject" id="subject" value="" size="22" /> <label
for="subject"><small>Subject*</small></label><br>
<input name="btn" type="button" id="btn" value="Send" onclick="calc();" /><br>
</form>
EOT;
return $markup;
}
add_shortcode('calc_form', 'calc_form_markup');
function calc_form_js() { ?>
<script type="text/javascript">
function calc()
{
alert ("My javascript function executes successfully...");
}
</script>
<?php }
add_action('wp_head', 'calc_form_js');
?>
我想在上面的插件中導入以下文件。
<link rel="stylesheet" href="colorbox.css" />
<script src="jquery.min.js"></script>
<script src="colorbox.js"></script>
在此先感謝