The wp-head tag has no wiki summary.
8
votes
2answers
4k views
How to Link External jQuery/Javascript files with WordPress
So I'm using Starkers to base my next WP theme on and I've run into a small issue, I was including my own version of jQuery in the header.php file but when inspecting my site using Firebug I noticed ...
0
votes
0answers
57 views
Why won't the action hook wp_head won't accept parameters?
I'm working on a plugin that adds scripting to the head using
add_action('wp_head',..);
I have to pass a variable to the function to get my desired result. To test this I'm simple "echoing" out the ...
6
votes
8answers
12k views
What does l10n.js do in WordPress 3.1? And how do I remove it?
I just installed WP 3.1 Beta 2 on my test server. I noticed that it ships with a new l10n.js file that gets automatically inserted into the header.
I did a bit of digging and it has something to do ...
5
votes
1answer
305 views
Multi-page posts do not get indexed by Google due to canonical URLs
I've just noticed that on my paginated posts, only the main page gets indexed in Google. The paginated posts "post-title/2" and "post-title/3" for example, do not get indexed.
On closer inspection, ...
0
votes
1answer
554 views
Echo a div to header.php from functions.php
Within the section of header.php I have a div structure
<div id="header">
<div id="masthead">
<div id="branding">
...
I want to add a div within "branding" - I can do this ...
0
votes
3answers
3k views
wp_head() remove redundant scripts?
hey guys,
quick question. I'm using jquery for my current project (the latest release). A few plugins I'm using are using jquery as well and they are inserted through wp_head(). Since I want my ...