Quantcast
Channel: Topic Tag: footer | WordPress.org
Viewing all articles
Browse latest Browse all 13545

digitalsky on "How can I load certain JavaScripts only on blog pages?"

$
0
0

Of course, I spoke to soon. Here's the issue now. I'm enqueueing the script in my functions.php file like this...

// Add our own JavaScripts.
function custom_scripts()
{
	// Register the scripts
	wp_register_script( 'modernizr', get_template_directory_uri() . '/js/modernizr-2.6.2.min.js', array(), '2.6.2', false );
	wp_register_script( 'formalize', get_template_directory_uri() . '/js/jquery.formalize.min.js', array(), '1.0', false );
	wp_register_script( 'social', get_template_directory_uri() . '/js/social.js', array(), '1.0', true );

	// Enqueue the scripts:
	wp_enqueue_script( 'modernizr' );
	wp_enqueue_script( 'formalize' );
	wp_enqueue_script( 'social' );
}
add_action( 'wp_enqueue_scripts', 'custom_scripts' );

Note that the script I'm trying to work with here is the 'social' one in the code above.

Now the problem I am having is that when I enqueue that code it works great and shows up in the footer but now of course I can't use that code from my previous post that detects if it's a single post page and then displays that code. The enqueue code I am using by default just inserts the script in the header or footer (whichever you tell it to).


Viewing all articles
Browse latest Browse all 13545

Trending Articles