forked from mirror/_s
No need for the $post global in _s_scripts()
The wp_attachment_is_image() function will figure out the $post global internally, does not require one to be passed. Makes _s_scripts look cleaner.
This commit is contained in:
parent
7a4aa04261
commit
c5b01c3bac
|
@ -100,8 +100,6 @@ add_action( 'widgets_init', '_s_widgets_init' );
|
|||
* Enqueue scripts and styles
|
||||
*/
|
||||
function _s_scripts() {
|
||||
global $post;
|
||||
|
||||
wp_enqueue_style( 'style', get_stylesheet_uri() );
|
||||
|
||||
wp_enqueue_script( 'small-menu', get_template_directory_uri() . '/js/small-menu.js', array( 'jquery' ), '20120206', true );
|
||||
|
@ -110,7 +108,7 @@ function _s_scripts() {
|
|||
wp_enqueue_script( 'comment-reply' );
|
||||
}
|
||||
|
||||
if ( is_singular() && wp_attachment_is_image( $post->ID ) ) {
|
||||
if ( is_singular() && wp_attachment_is_image() ) {
|
||||
wp_enqueue_script( 'keyboard-image-navigation', get_template_directory_uri() . '/js/keyboard-image-navigation.js', array( 'jquery' ), '20120202' );
|
||||
}
|
||||
}
|
||||
|
|
Reference in New Issue