I've purchased a premium WP theme that has a header which rotates between five featured posts/photos. My hope is to keep the visual appeal of this without clic开发者_如何学运维king through to the post itself. Any ideas on how to deactivate the click through? Here is the PHP code for the featured posts. Happy supply more code / to share the dev site itself if needed.
http://pastebin.com/vJwbJBap
The theme is located at: http://www.mojo-themes.com/demo/siucco-wordpress-theme/
Many thanks,
Alex
You could do it via jquery.. inside off your "demo.js" add this inside window load function(){}
$("#slider a.nivo-imageLink").attr('href', '').click(function(){return false});
精彩评论