Blog cá nhân
Chia sẻ kinh nghiệm thực tế về WordPress, lập trình và phát triển web.
Trang 12 / 12 — 111 bài viết
Trong WordPress có rất nhiều hàm để lấy đường dẫn tới: Plugin, Theme, WordPress. Plugin __FILE__ // /home/huynhtan/public_html/wp-content/plugins/wp-payroll/wp-payroll.php __DIR__ // /home/huynhtan/public_html/wp-content/plugins/wp-payroll plugins_url(); // https: //huynhtanmao.com/wp-content/plugin plugins_url($path, $file); ex: plugins_url(‘css/style.css’,__FILE__) ; // huynhtanmao.com/wp-content/plugin/your-plugin/css/style.css plugin_dir_url($file); ex: plugins_dir_url(__FILE__) ; // huynhtanmao.com/wp-content/plugin/your-plugin/ plugin_dir_path($file); ex: plugins_dir_path(__FILE__) ; // /home/huynhtan/public_html/wp-content/plugins/wp-payroll/ plugin_basename($file); // /your-plugin/your-plugin.php $file: thường là __FILE__