如何在精美的盒子中打开Wordpress帖子?
例如: Lorem ipsum LINK lorem ipsum。
当我点击链接时 - 如何在fancybox或其他" popup"中打开一些帖子像Litghbox等。
答案 0 :(得分:0)
你可以简单地使用wordpress提供的thickbox
js来创建fancybox:
<?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
修改:
用于加载其他来源或网站的内容。
<?php add_thickbox(); ?>
<a href="http://example.com?TB_iframe=true&width=600&height=550" class="thickbox">View the WordPress Codex!</a>