meta box wrapper

Support General meta box wrapper

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #6021
    bangbdbangbd
    Participant

    Xin chào,

    Tôi có thể thêm thẻ bao ngoài thẻ <div class="rwmb-meta-box" data-autosave="false"> hay không? Và làm như thế nào.

    Cám ơn.

    #6031
    bangbdbangbd
    Participant

    Bao ngoài thẻ DIV class=”rwmb-meta-box” data-autosave=”false” (ghi thẻ div không hiện)

    #6032
    Anh TranAnh Tran
    Keymaster

    Hi Bằng,

    Hiện thời ko có cách nào để bao thêm 1 thẻ div bên ngoài thẻ div.rwmb-meta-box được. Tuy vậy, bạn có thể bao tất cả phần nội dung còn lại trong 1 thẻ div bằng cách hook vào action rwmb_beforerwmb_after.

    VD:

    add_action( 'rwmb_before_{$meta_box_id}', function() {
        echo '<div id="your-id" class="your-class">';
    } );
    add_action( 'rwmb_after_{$meta_box_id}', function() {
        echo '</div>';
    } );
Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘meta box wrapper’ is closed to new replies.