hondatron90
Gà con
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>
}