-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml5presentation-settings.php
44 lines (34 loc) · 2.08 KB
/
html5presentation-settings.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
$inc_wp_head = get_option( 'include-wp_head' );
$inc_wp_footer = get_option( 'include-wp_footer' );
?>
<div class="wrap">
<h2>HTML5 Slideshow Presentations Settings</h2>
<form class="html5-slideshow-presentations" method="post" action="options.php">
<?php settings_fields('html5-slideshow-presentations'); ?>
<p>Thanks for using the HTML5 Slideshow Presentations Plugin! You'll find options below for selecting which functionality you would like enabled.</p>
<table class="form-table">
<tr valign="top">
<th scope="row">
<strong>Include <code><?php wp_head(); ?></code> in Slides' head section</strong>
<p>This will likely effect the display of the slides as wp_head loads theme and plugin css files. You may need this if you are looking for plugin functionality on slide pages.<p>
</th>
<td><input type="checkbox" name="include-wp_head" value="yes"<?php echo $inc_wp_head == 'yes' ? ' checked' : '';?> /></td>
</tr>
<tr valign="top">
<th scope="row">
<strong>Include <code><?php wp_footer(); ?></code> in Slides' footer section</strong>
<p>Disabling this will remove the admin bar (if enabled) as well as other plugin functionality. May need to disable if plugins/theme is conflicting with slide pages.<p>
</th>
<td><input type="checkbox" name="include-wp_footer" value="yes"<?php echo $inc_wp_footer == 'yes' ? ' checked' : '';?> /></td>
</tr>
</table>
<p class="submit">
<input type="submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
</p>
</form>
<p class="jtsocial"><a class="jtpaypal" href="http://j.ustin.co/rYL89n" target="_blank">Contribute<span></span></a>
<a class="jttwitter" href="http://j.ustin.co/wUfBD3" target="_blank">Follow me on Twitter<span></span></a>
<a class="jtemail" href="http://j.ustin.co/scbo43" target="blank">Contact Me<span></span></a>
</p>
</div>