WordPress API有像BootStrap那样的模式对话框吗?
在我的WordPress插件管理页面-插件设置页面访问通过仪表板-我希望有模态对话框出现,并允许用户编辑设置。
WordPress有button、wp-list-table、tablenav等类。我在想,可能也会有一个带有相关Javascript函数的模态对话框类来使其出现和消失?
发布于 2015-07-23 06:14:55
是的,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_参考/厚盒
https://wordpress.stackexchange.com/questions/195319
复制相似问题