| 1 |
<?php |
| 2 |
|
| 3 |
defined('ABSPATH') or die('Jog on!'); |
| 4 |
|
| 5 |
function sh_cd_premade_shortcodes_page() { |
| 6 |
|
| 7 |
?> |
| 8 |
|
| 9 |
<div class="wrap"> |
| 10 |
|
| 11 |
<div id="icon-options-general" class="icon32"></div> |
| 12 |
|
| 13 |
<div id="poststuff"> |
| 14 |
|
| 15 |
<div id="post-body" class="metabox-holder columns-3"> |
| 16 |
|
| 17 |
<!-- main content --> |
| 18 |
<div id="post-body-content"> |
| 19 |
|
| 20 |
<div class="meta-box-sortables ui-sortable"> |
| 21 |
<div class="postbox"> |
| 22 |
<h3 class="hndle"><span><?php _e( 'Pre-made Shortcode Variables' ); ?> </span></h3> |
| 23 |
<div style="padding: 0px 15px 0px 15px"> |
| 24 |
|
| 25 |
<p><?php echo __('Below is a list of premade shortcode variables that you can use throughout your website.'); ?></p> |
| 26 |
<h3>Premade Shortcodes</h3> |
| 27 |
<?php echo sh_cd_display_premade_shortcodes(); ?> |
| 28 |
<br /> |
| 29 |
<p><?php echo __('<strong> Suggestion?</strong> Got an idea for a premade tag? If so, email me at: ') . '<a href="mailto:email@yeken.uk">email@yeken.uk</a>'; ?> </p> |
| 30 |
</div> |
| 31 |
</div> |
| 32 |
|
| 33 |
|
| 34 |
</div> |
| 35 |
<!-- .meta-box-sortables .ui-sortable --> |
| 36 |
</div> |
| 37 |
<!-- post-body-content --> |
| 38 |
</div> |
| 39 |
<!-- #post-body .metabox-holder .columns-2 --> |
| 40 |
<br class="clear"> |
| 41 |
</div> |
| 42 |
<!-- #poststuff --> |
| 43 |
|
| 44 |
</div> <?php |
| 45 |
|
| 46 |
} |
| 47 |
|