我把脚本放在一个外部文件中
// Excerpt word count
function excerpt_count_js(){
wp_enqueue_script( \'excerpt-word-count\', plugins_url( \'excerpt_word_count.js\', __FILE__ ), array( \'jquery\' ), false, true );
}
并对脚本进行了一些修改
jQuery(document).ready(
function($){
$("#postexcerpt .handlediv")
.after("<div style=\\"position:absolute;top:2px;right:5px;color:#666;\\"><small>Excerpt length: </small><input type=\\"text\\" value=\\"0\\" maxlength=\\"3\\" size=\\"3\\" id=\\"excerpt_counter\\" readonly=\\"\\" style=\\"background:#fff;\\"> <small>word(s).</small></div>");
$("#excerpt_counter").val($("#excerpt").val().split(/\\S+\\b[\\s,\\.\\\'-:;]*/).length - 1);
$("#excerpt").keyup(
function() {
$("#excerpt_counter").val( $("#excerpt").val().split(/\\S+\\b[\\s,\\.\\\'-:;]*/).length - 1);
}
);
}
);
最后更改加载脚本的挂钩
add_action( \'load-post.php\', \'excerpt_count_js\');
add_action( \'load-post-new.php\', \'excerpt_count_js\');
一点问题都没有。
只是想澄清一下:“永久链接”是指帖子的永久链接(标题输入和内容输入之间的一行)?