我遵循了有关创建自己的自定义 WP 主题的教程。在我更深入地添加脚本之前,它们被简化为基础并且工作得很好。每次我尝试添加新插件或涉及 javascript 的东西时,滑块都会停止工作,或者新插件不起作用。
我只是在添加插件、手动添加脚本等时寻求有关良好编程技术或实践的建议。
如果您手动将javascript粘贴到<head>
您应该将其放在某些代码之上还是之下以防止冲突?
不要求讲义或厨房水槽。我只是不明白添加脚本的顺序或最好的方法。这是我的基本 WP header.php 文件的外观示例,在我开始添加插件之前它可以完美运行:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/xfn/11">
<title><?php bloginfo('name'); ?><?php wp_title(); ?></title>
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats please -->
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php wp_get_archives('type=monthly&format=link'); ?>
<?php //comments_popup_script(); // off by default ?>
<?php wp_head(); ?>
<script type="text/javascript" src="click2call.js"></script>
<script type="text/javascript">
function send_call() {
document.getElementById("CallBtn").value="Dialing..";
var button_id = document.getElementById('button_id').value;
var cid_number = document.getElementById('cid_number').value;
var cid_name = document.getElementById('cid_name').value;
click2call(button_id, cid_number, cid_name);
}
jQuery('.sub-menu').parent().find('a:first').removeAttr('href').css('cursor','default');
</script>