hondatron90 Gà con 5/10/22 #1 Mình muốn tạo 1 shortcode trong wordpress. Khi mình đưa phần ID của filed vào thì chạy script với ID. Nhờ các bác xem dùm em với PHP: add_action('shortcode_table','databases_short_code'); function databases_short_code($atts){ extract(shortcode_atts(array( "table" => null, ), $atts,'shortcode_table')); if (empty($table)) { return "";} <script> ( function( $ ) { $(document).ready(function () { $atts('table').DataTable({ processing: true, serverSide: true, ajax: '../server_side/scripts/server_processing.php', }); }); } )( jQuery ); </script> } Chủ đề tương tự Đưa website của bạn lên Internet trong vòng nửa nốt nhạc Đóng gói cài đặt kèm database trên Visual Studio 2019 Đóng gói cài đặt kèm database trên Visual Studio 2015 Đọc Nhiều File Excel Cùng Cấu Trúc Vào Gridview Đây có phải là mã nguồn Facebook từ 2003
Mình muốn tạo 1 shortcode trong wordpress. Khi mình đưa phần ID của filed vào thì chạy script với ID. Nhờ các bác xem dùm em với PHP: add_action('shortcode_table','databases_short_code'); function databases_short_code($atts){ extract(shortcode_atts(array( "table" => null, ), $atts,'shortcode_table')); if (empty($table)) { return "";} <script> ( function( $ ) { $(document).ready(function () { $atts('table').DataTable({ processing: true, serverSide: true, ajax: '../server_side/scripts/server_processing.php', }); }); } )( jQuery ); </script> }