web-dev-qa-db-ja.com

WordPress APIにはモーダルダイアログがありますか

WordPress APIはBootStrapのようなモーダルダイアログを持っていますか?

私のWordPressプラグイン管理ページ - ダッシュボードを通してアクセスされるプラグイン設定ページ - でモーダルダイアログを表示させ、ユーザーが設定を編集できるようにしたいです。

WordPressにはbuttonwp-list-tabletablenavなどのクラスがあります。それを表示したり消したりするためのJavascript API関数が関連付けられたモーダルダイアログクラスもあると思いますか?

2
sazr

はい、WordPressにはモーダルダイアログがあり、Thickboxと呼ばれていますが、必要なものを実装するのがどれほど柔軟であるかはわかりません。これがコードです -

<?php add_thickbox(); ?>
<div id="my-content-id" style="display:none;">
     <p>
          This is my hidden content! It will appear in ThickBox when the link is clicked.
     </p>
</div>

<a href="#TB_inline?width=600&height=550&inlineId=my-content-id" class="thickbox">View my inline content!</a>   

詳細については、参照してください - https://codex.wordpress.org/Javascript_Reference/ThickBox

5
Pooja Mistry