PluginProbe
Snippet Shortcodes / 3.0.2
Snippet Shortcodes v3.0.2
5.2.1 5.2 5.1.8 5.1.6 5.1.7 5.1.5 trunk 1.0 1.1 1.2 1.3 1.3.1 1.4 1.5 1.5.1 1.6 1.6.1 1.7 1.7.1 1.7.2 1.7.3 1.7.4 1.8 2.0 2.0.1 All 74 releases
shortcode-variables / includes / pages / pages.premade.php

pages.premade.php in Snippet Shortcodes 3.0.2, at includes/pages/pages.premade.php

47 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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