WordPress & jQuery: “$ is not a function”

Als je jQuery wilt gebruiken in je  WordPress theme of plugin en de foutmelding “$ is not a function” krijgt in Firebug kan je dit heel simpel oplossen door alle dollar tekens ($) aan te passen in  ‘jQuery’.


Het dollar teken is gereserveerd in WordPress voor de Prototype library,  waardoor je de foutmelding krijgt.

Dus:

 $(document).ready(function() { $("#test").show(); });

wordt:

jQuery(document).ready(function() { jQuery("#test").show(); });