functions.php
<?php add_filter( 'script_loader_tag', 'my_script_loader_tag', 10, 3 ); function my_script_loader_tag( $tag, $handle, $src ) { $script= "jQuery(function(){ var slidingPeriod= 10000; setInterval(function(){ jQuery('#featured-content .slider-next').trigger( 'click', true ); },slidingPeriod );});"; if ( $handle== 'jquery-migrate' ) { return $tag . '<script>'.$script.'</script>' . "\n"; } return $tag; } ?>