shakil97bd

How to call Wordpress jquery in your theme

Aug 6th, 2014
460
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. **********How to call Wordpress jquery in your theme**********
  2.  
  3. Description: This function is for call wordpress jquery Dynamicly in your theme.
  4.  
  5.  
  6. *** প্রথমে নিচের কোড গুল functions.php file -এ past করতে হবে ***
  7.  
  8.  
  9. function erika_theme_jquery() {
  10.  
  11. wp_enqueue_script('jquery');
  12.  
  13. }
  14. add_action('init','erika_theme_jquery');
  15.  
  16.  
  17. ***** এর পর আমাদের theme এর js folder -এ গিয়ে main.js/function.js file -এ যদি প্রথমে $ দিয়ে শুরু হয় তবে সেখানে jQuery লিখতে হবে এবং funtion() -এর মধ্যে $ লিখতে হবে এভাবে function($) । এর পর আমাদের html file -এ থাকা jquery টি delete করে দিতে হবে । তাহলেই jquery dynamic হয়ে যাবে ।
  18.  
  19. এর পরও যদি কাজ না হয় তাহলে সকল $ replace করে jQuery করতে হবে ৷ [shortcode way]
Add Comment
Please, Sign In to add comment