Advertisement
arnabkumar

call_js_css_&_file_in_functions.php

May 7th, 2014
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.66 KB | None | 0 0
  1.  
  2. <?php
  3.  
  4.  // wp_enqueue_style ইউস করে এক্সটারনাল স্টাইল কল করা ফাংসান পি এইচ পি এর মধ্যে।
  5.  
  6.  wp_enqueue_style( $handle, $src, $deps, $ver, $media );
  7.  
  8.  ১। $handle - এটা থাকতেই হবে। এটা যেকোনো নামেই হতে পারে যেমন  'arnab_style' এই নামের সাথে যে ফাইল কল করা হছে তার কোন মিল নেই।
  9.   থাকলেও আসুবিধা নেই কাজ করে। তবে এটা ইউনিক হওয়াটা ভালো।
  10.  
  11.   Default: None
  12.  
  13.  
  14. ২। $src - এটাও থাকাতে হবে । এটা হছে যে ফাইল কল করা হছে তার সোর্স । এটা দুই ভাবে কল হতে পারে একটা প্লাগিন এর ক্ষেত্রে অন্যটা থিমের ক্ষেত্রে,
  15.  
  16. Default: false
  17.      
  18.       প্লাগিন এর ক্ষেত্রে - plugins_url('test_plugin/js/main.css')
  19.      
  20.       থিমের ক্ষেত্রে -  wp_enqueue_style( 'arnab_style', get_template_directory_uri() . '/css/style.css');
  21.      
  22.      
  23.       এই দুটি থাকলেই হবে বাকিগুলি অপ্সানাল
  24.      
  25. ৩। $deps -  
  26.  
  27.   Default: array()
  28.  
  29. ৪। $ver -   এতা হল ভারসান
  30.  
  31.   Default: false
  32.  
  33. ৫। $media - এটা হ্ল মিডিয়া কন ধরনের স্টাইল এড হবে যেমন  'media' , 'all'
  34.  
  35. Default: 'all'
  36.  
  37.  
  38. একতা পুরো উদাহরণ  - রিক্যারেড দিয়ে ,  থিমে কলের জন্য
  39.  
  40. function theme_styles()  
  41. {
  42.   // Register the style like this for a theme:  
  43.   // (First the unique name for the style (custom-style) then the src,
  44.   // then dependencies and ver no. and media type)
  45.   wp_enqueue_style( 'arnab_style', get_template_directory_uri() . '/css/style.css');
  46.  
  47.   // enqueing:
  48.  
  49. }
  50.  
  51. add_action('wp_enqueue_scripts', 'theme_styles');
  52.  
  53.  
  54.  
  55. function theme_styles()  
  56. {
  57.   // Register the style like this for a theme:  
  58.   // (First the unique name for the style (custom-style) then the src,
  59.   // then dependencies and ver no. and media type)
  60.   wp_register_style(get_template_directory_uri() . '/css/custom_style.css', array(), '20120208', 'all' );
  61.  
  62. }
  63. add_action('wp_enqueue_scripts', 'theme_styles');
  64.  
  65.  
  66.  
  67.      
  68.      
  69.        
  70.  
  71.  // wp_register_script ইউস করে এক্সটারনাল javascripc কল করা ফাংসান পি এইচ পি এর মধ্যে।
  72.  
  73. সবই ঠিক থাকবে সুধু লাস্ট স্ত্রিং বাদে
  74.  
  75. লাস্ট টা হলে স্কিপ্ত টা কথায় লড হবে থিমের  হেডারে না ফুটারে
  76.  
  77. Default: false হেডারেই লড হবে
  78.  
  79. থাকতেই হবে -
  80.  
  81.  
  82. function rrf_add_scripts() {
  83.  
  84.   wp_enqueue_script( 'arnab', get_template_directory_uri() . '/js/main.js');
  85.  
  86.  
  87. }
  88.  
  89. add_action( 'wp_enqueue_scripts', 'rrf_add_scripts' );
  90.  
  91.  
  92. function rrf_add_scripts() {
  93.  
  94.   wp_register_script( 'bootstrapjs', get_template_directory_uri() . '/js/bootstrap.min.js', array( 'jquery' ), '420', TRUE );
  95.  
  96.   wp_enqueue_script( 'bootstrapjs' );
  97.  
  98. }
  99.  
  100. add_action( 'wp_enqueue_scripts', 'rrf_add_scripts' );
  101.  
  102.  
  103.  
  104.  
  105.  
  106. // কন ফাইল  functions.php তে কল করতে
  107.  
  108. require_once ('inc/test_file.php');
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement