-
-
Save tommcfarlin/1db21634b8b7a88a963b3875553d2539 to your computer and use it in GitHub Desktop.
[WordPress][Premium] Adding WordPress Modal Dialogs (With Built in Libraries)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* A basic plugin page that will eventually be used to demonstrate how to use the | |
* Thickbox library included with WordPress. | |
* | |
* @package Acme | |
*/ | |
?> | |
<div id="acme-thickbox-demo" class="wrap"> | |
<!-- TODO --> | |
</div><!-- #acme-thickbox-demo --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* A basic plugin page that will eventually be used to demonstrate how to use the | |
* Thickbox library included with WordPress. | |
* | |
* @package Acme | |
*/ | |
add_thickbox(); | |
?> | |
<div id="acme-thickbox-demo" class="wrap"> | |
<!-- TODO --> | |
</div><!-- #acme-thickbox-demo --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* A basic plugin page that will eventually be used to demonstrate how to use the | |
* Thickbox library included with WordPress. | |
* | |
* @package Acme | |
*/ | |
add_thickbox(); | |
?> | |
<div id="acme-thickbox-demo" class="wrap"> | |
<h1>Acme Thickbox Demo</h1> | |
<p>Provides an exmaple of how to use the thickbox library within a WordPress plugin page.</p> | |
<div id="acme-thickbox-content"> | |
<a href="#">Display The Dialog</a> | |
</div><!-- #acme-thickbox-content --> | |
</div><!-- #acme-thickbox-demo --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* A basic plugin page that will eventually be used to demonstrate how to use the | |
* Thickbox library included with WordPress. | |
* | |
* @package Acme | |
*/ | |
add_thickbox(); | |
?> | |
<div id="acme-thickbox-demo" class="wrap"> | |
<h1>Acme Thickbox Demo</h1> | |
<p>Provides an exmaple of how to use the thickbox library within a WordPress plugin page.</p> | |
<div id="acme-thickbox-content"> | |
<a href="TB_inline?width=600&height=550&inlineId=acme-modal-dialog" class="thickbox">Display The Dialog</a> | |
<div id="acme-modal-dialog" style="display:none;"></div><!-- #acme-modal-dialog --> | |
</div><!-- #acme-thickbox-content --> | |
</div><!-- #acme-thickbox-demo --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="acme-modal-dialog" style="display:none;"> | |
<h2>Hello World</h2> | |
<p>Lucas ipsum dolor sit amet ventress dak jusik chewbacca tenel beru bail anomid hapes mas.</p> | |
<p>Fel kalee kyle desann. Ozzel p'w'eck jax castell saleucami. Thisspias veila mantell mccool garindan jax.</p> | |
<p>Barriss kurtzen sing bertroff cody frozarns. Han koon miraluka vau.</p> | |
<p> | |
<ul> | |
<li>Bajic asajj boba raymus dug piell moddell jax darth.</li> | |
<li>Sio anakin naberrie shistavanen fisto utapau chewbacca aayla.</li> | |
</ul> | |
</p> | |
<p> | |
Corran axmis kor-uj hutt marek kenobi ansuroer echani. Mirax mara fisto bith tyranus kashyyyk farlander max b'omarr. | |
Ben dodonna askajian teevan palpatine lobot beru. | |
</p> | |
</div><!-- #acme-modal-dialog --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="TB_inline?width=600&height=550&inlineId=acme-modal-dialog" title="Hello World" class="thickbox">Display The Dialog</a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment