问题描述
我试图插入这个代码:
<script type="text/javascript">
some Javascript codes comes here
</script>
到 Wordpress 的<head></head>
部分在前端和管理面板
例如 Joomla! 1.6 有一个允许这样的 API:
$doc =& JFactory::getDocument();
$doc->addCustomTag($headTag);
我需要为不同的页面添加不同的东西。例如:
我需要补充
<link rel="alternate" type="application/rss+xml" title="feed title" href="feed%20url" />
几页
我需要添加
<script type="text/javascript" src="" . LIVE_SITE .
"/wp-content/plugins/jobs/lknlibrary/js/ajax.js"></script>
<script type="text/javascript">
var ajax = new sack();
var currentClientID=false;
function getClientData()
{
var clientId = document.getElementById('db_country_id').value.replace(/[^0-9]/g,'');
ajax.requestFile = '" .BASE_PATH . "/wp-content/plugins/jobs/com_jobs_admin/tasks/get_location_data.php?task=get_location_data&name=db_parent_id&getClientId='+clientId; // Specifying which file to get
ajax.onCompletion = showClientData; // Specify function that will be executed after file has been found
ajax.runAJAX(); // Execute AJAX function
}
function showClientData()
{
clearJS = ajax.response;
var strTagStrippedText = clearJS.replace(/(<s*/?s*)div(s*([^>]*)?s*>)/gi ,'');
document.getElementById('locationsDiv').innerHTML=strTagStrippedText ;
}
function initFormEvents()
{
if (document.getElementById('db_country_id')){
document.getElementById('db_country_id').onchange = getClientData;
document.getElementById('db_country_id').focus();
}
}
window.onload = initFormEvents;
</script>
几页
我需要补充
<link rel="stylesheet" type="text/css" href="/wordpress/wp-content/plugins/jobs/lknlibrary/js/tabs/tab.webfx.css" />
几页
我在管理面板上有 70 多页,如上所述。
试图用这个例子来管理 WordPress 的头部有点困难。
最佳解决办法
在您的主题 functions.php
:
function my_custom_js() {
echo '<script type="text/javascript" src="myjsfile.js"></script>';
}
// Add hook for admin <head></head>
add_action('admin_head', 'my_custom_js');
// Add hook for front-end <head></head>
add_action('wp_head', 'my_custom_js');
次佳解决办法
在前面的答案中,您可以在输出标题之前收集所有必需的片段,然后使用动作钩将所有需要的部分注入到头上。
在你的 functions.php 文件中,添加
$inject_required_scripts = array();
/**
* Call this function before calling get_header() to request custom js code to be injected on head.
*
* @param code the javascript code to be injected.
*/
function require_script($code) {
global $inject_required_scripts;
$inject_required_scripts[] = $code; // store code snippet for later injection
}
function inject_required_scripts() {
global $inject_required_scripts;
foreach($inject_required_scripts as $script)
// inject all code snippets, if any
echo '<script type="text/javascript">'.$script.'</script>';
}
add_action('wp_head', 'inject_required_scripts');
然后在您的页面或模板中,使用它
<?php
/* Template Name: coolstuff */
require_script(<<<JS
jQuery(function(){jQuery('div').wrap('<blink/>')});
JS
);
require_script(<<<JS
jQuery(function(){jQuery('p,span,a').html('Internet is cool')});
JS
);
get_header();
[...]
我做了 javascript,因为它是最常见的使用,但它可以很容易地适应头部的任何标签,以及内联代码或通过传递 href /src 到外部 URL 。
第三种解决办法
对于任何来这里的人来说,恐怕我和 @usama sulaiman 在这里。使用入队功能提供了一种安全的方式来根据脚本依赖关系加载样式表和脚本,是 WP 推荐的实现 OP 所要实现的方法。想想所有的插件试图加载他们自己的 JQuery 副本; 你最好希望他们使用排队:D
另外,尽可能地创建一个插件; 如果您没有 back-up,并且升级您的主题并在该过程中覆盖您的功能文件,那么在您的函数文件中添加自定义代码可以是 pita 。
有一个插件处理这个和其他自定义函数也意味着如果你认为他们的代码与其他插件或功能冲突,你可以关闭它们。
插件文件中的以下内容是您要查找的内容:
<?php
/*
Plugin Name: Your plugin name
Description: Your description
Version: 1.0
Author: Your name
Author URI:
Plugin URI:
*/
function $yourJS() {
wp_enqueue_script(
'custom_script',
plugins_url('/js/your-script.js', __FILE__),
array('jquery')
);
}
add_action( 'wp_enqueue_scripts', '$yourJS');
add_action( 'wp_enqueue_scripts', 'prefix_add_my_stylesheet' );
function prefix_add_my_stylesheet() {
wp_register_style( 'prefix-style', plugins_url('/css/your-stylesheet.css', __FILE__) );
wp_enqueue_style( 'prefix-style' );
}
?>
按如下方式构建文件夹:
Plugin Folder
|_ css folder
|_ js folder
|_ plugin.php ...contains the above code - modified of course ;D
然后将其压缩并使用您的添加插件界面将其上传到您的 WP 安装,激活它和 Bob 的叔叔。
参考文献
注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。