Hỏi về tạo code shortcode trong wordpress | VN-Zoom | Cộng đồng Chia Sẻ Kiến Thức Công Nghệ và Phần Mềm Máy Tính

Adblocker detected! Please consider reading this notice.

We've detected that you are using AdBlock Plus or some other adblocking software which is preventing the page from fully loading.

We need money to operate the site, and almost all of it comes from our online advertising.

Please add vn-z.vn to your ad blocking whitelist or disable your adblocking software. 

All the knowledge we share is completely free. If you are willing, please support us here.

×

Hỏi về tạo code shortcode trong wordpress

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>
}
 

langtudaik

Rìu Sắt
Bạn nói rõ ràng ra để mọi người hỗ trợ, chứ nói như thế sao mà biết :(
 


Top