Multiple Themes - Version 4.5.1

Version Description

  • Remove %E2%80%8E suffix from URLs being entered
Download this release

Release Info

Developer dgewirtz
Plugin Icon 128x128 Multiple Themes
Version 4.5.1
Comparing to
See all releases

Version 4.5.1

includes/admin-other.php ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ // Exit if .php file accessed directly
3
+ if ( !defined( 'ABSPATH' ) ) exit;
4
+
5
+
6
+ // Add Link to the plugin's entry on the Admin "Plugins" Page, for easy access
7
+ add_filter( 'plugin_action_links_' . jr_mt_plugin_basename(), 'jr_mt_plugin_action_links', 10, 1 );
8
+
9
+ /**
10
+ * Creates Settings entry right on the Plugins Page entry.
11
+ *
12
+ * Helps the user understand where to go immediately upon Activation of the Plugin
13
+ * by creating entries on the Plugins page, right beside Deactivate and Edit.
14
+ *
15
+ * @param array $links Existing links for our Plugin, supplied by WordPress
16
+ * @param string $file Name of Plugin currently being processed
17
+ * @return string $links Updated set of links for our Plugin
18
+ */
19
+ function jr_mt_plugin_action_links( $links ) {
20
+ // The "page=" query string value must be equal to the slug
21
+ // of the Settings admin page.
22
+ array_push( $links, '<a href="' . get_bloginfo('wpurl') . '/wp-admin/admin.php?page=jr_mt_settings' . '">Settings</a>' );
23
+ return $links;
24
+ }
25
+
26
+ ?>
includes/admin.php ADDED
@@ -0,0 +1,666 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ // Exit if .php file accessed directly
3
+ if ( !defined( 'ABSPATH' ) ) exit;
4
+
5
+
6
+ // Admin Page
7
+
8
+ require_once( jr_mt_path() . 'includes/admin-other.php' );
9
+
10
+ add_action( 'admin_menu', 'jr_mt_admin_hook' );
11
+ // Runs just before admin_init (below)
12
+
13
+ /**
14
+ * Add Admin Menu item for plugin
15
+ *
16
+ * Plugin needs its own Page in the Settings section of the Admin menu.
17
+ *
18
+ */
19
+ function jr_mt_admin_hook() {
20
+ // Add Settings Page for this Plugin
21
+ global $jr_mt_plugin_data;
22
+ add_theme_page( $jr_mt_plugin_data['Name'], 'Multiple Themes plugin', 'switch_themes', 'jr_mt_settings', 'jr_mt_settings_page' );
23
+ add_options_page( $jr_mt_plugin_data['Name'], 'Multiple Themes plugin', 'switch_themes', 'jr_mt_settings', 'jr_mt_settings_page' );
24
+ }
25
+
26
+ /**
27
+ * Settings page for plugin
28
+ *
29
+ * Display and Process Settings page for this plugin.
30
+ *
31
+ */
32
+ function jr_mt_settings_page() {
33
+ global $jr_mt_plugin_data;
34
+ $jr_mt_plugin_data = array_merge( $jr_mt_plugin_data, jr_readme() );
35
+ global $jr_mt_themes_cache;
36
+ $jr_mt_themes_cache = wp_get_themes();
37
+ global $jr_mt_plugins_cache;
38
+ $jr_mt_plugins_cache = get_plugins();
39
+ add_thickbox();
40
+ echo '<div class="wrap">';
41
+ screen_icon( 'plugins' );
42
+ echo '<h2>' . $jr_mt_plugin_data['Name'] . '</h2>';
43
+
44
+ // Required because it is only called automatically for Admin Pages in the Settings section
45
+ settings_errors( 'jr_mt_settings' );
46
+
47
+ $theme = wp_get_theme()->Name;
48
+ global $jr_mt_options_cache;
49
+
50
+ $current_wp_version = get_bloginfo( 'version' );
51
+
52
+ if ( $jr_mt_plugin_data['read readme'] && version_compare( $current_wp_version, $jr_mt_plugin_data['Tested up to'], '>' ) ) {
53
+ /* WordPress version is too new:
54
+ When currently-installed version of Plugin was installed,
55
+ it did not support currently-installed version of WordPress.
56
+ So, check if a newer version of plugin is available. */
57
+ $current = FALSE;
58
+ // Check if latest version of the plugin supports this version of WordPress
59
+ if ( !function_exists( 'plugins_api' ) ) {
60
+ require_once( ABSPATH . 'wp-admin/includes/plugin-install.php' );
61
+ }
62
+ $directory = plugins_api( 'plugin_information', array( 'slug' => $jr_mt_plugin_data['slug'],
63
+ 'fields' => array( 'download_link' => TRUE,
64
+ 'tested' => TRUE,
65
+ 'version' => TRUE,
66
+ 'error_data' => TRUE,
67
+ 'tags' => FALSE,
68
+ 'compatibility' => FALSE,
69
+ 'sections' => FALSE
70
+ )
71
+ ) );
72
+ if ( property_exists( $directory, 'errors' ) && ( $directory->error_data->plugins_api_failed == 'N;' ) ) {
73
+ // Plugin not found in WordPress Directory
74
+ echo '<h3>Warnings</h3><p>Here is the problem:<ul><li> &raquo; This Plugin (' . $jr_mt_plugin_data['Name']
75
+ . ') has not been tested with the version of WordPress you are currently running: ' . $current_wp_version
76
+ . '.</li><li> &raquo; This Plugin could not be found in the WordPress Plugin Directory. '
77
+ . 'If you are sure it should be there, the WordPress Plugin Directory may be currently unavailable or inaccessible from your web server.</li></ul></p>'
78
+ . '<p>The plugin will probably still work with your newer version of WordPress, but you need to be aware of the issue.</p>';
79
+ } else {
80
+ if ( version_compare( $current_wp_version, $directory->tested, '>' ) ) {
81
+ // Latest version of readme.txt for latest version of Plugin indicates that Plugin has not yet been tested for this version of WordPress
82
+ echo '<h3>Warning</h3><p>Here is the problem:<ul><li> &raquo; This Plugin (' . $jr_mt_plugin_data['Name']
83
+ . ') has not been tested with the version of WordPress you are currently running: ' . $current_wp_version
84
+ . '.</li></ul></p>'
85
+ . '<p>The plugin will probably still work with your newer version of WordPress, but you need to be aware of the issue.</p>';
86
+ } else {
87
+ if ( version_compare( $jr_mt_plugin_data['Version'], $directory->version, '=' ) ) {
88
+ /* The latest version of the Plugin has been installed,
89
+ but the readme.txt has been updated in the WordPress Plugin Directory
90
+ to indicate that it now supports the installed version of WordPress.
91
+
92
+ Latest version of Plugin has already been installed, but readme.txt is out of date,
93
+ so update readme.txt. */
94
+
95
+ $errmsg_before = '<h3>Warning</h3><p>Here is the problem:<ul><li> &raquo; This version (' . $jr_mt_plugin_data['Version']
96
+ . ') of this Plugin (' . $jr_mt_plugin_data['Name']
97
+ . ') has been tested with the version of WordPress you are currently running (' . $current_wp_version
98
+ . '), but</li><li> &raquo; The currently installed readme.txt file for this plugin is out of date,'
99
+ . '</li><li> &raquo; The attempt to update the readme.txt from the WordPress Plugin Repository failed, and'
100
+ . '</li><li> &raquo; The specific error is: ';
101
+ $errmsg_after = '</li></ul></p>'
102
+ . '<p>Another attempt will be made to update readme.txt each time this Settings page is displayed.'
103
+ . ' Nonetheless, this plugin should work properly even if readme.txt is out of date.</p>';
104
+
105
+ if ( is_wp_error( $file_name = download_url( $directory->download_link ) ) ) {
106
+ // Error
107
+ echo $errmsg_before . 'The plugin failed to completely download from the WordPress Repository with 300 seconds' . $errmsg_after;
108
+ } else {
109
+ if ( is_int( $resource_handle = zip_open( $file_name ) ) ) {
110
+ // Error
111
+ echo $errmsg_before
112
+ . "php function zip_open error number $resource_handle while attempting to open the plugin's"
113
+ . 'compressed .zip file successfully downloaded from the WordPress Plugin Repository'
114
+ . $errmsg_after;
115
+ } else {
116
+ $find_readme = TRUE;
117
+ while ( $find_readme && ( FALSE !== $dir_ent = zip_read( $resource_handle ) ) ) {
118
+ if ( is_int( $dir_ent ) ) {
119
+ // Error code
120
+ echo $errmsg_before
121
+ . "php function zip_read error number $dir_ent while attempting to read the plugin's"
122
+ . ' compressed .zip file successfully downloaded from the WordPress Plugin Repository'
123
+ . $errmsg_after;
124
+ // Get out of While loop
125
+ $find_readme = FALSE;
126
+ } else {
127
+ // Wait until the While loop gets to the readme.txt entry in the Plugin's Zip file
128
+ if ( zip_entry_name( $dir_ent ) == $jr_mt_plugin_data['slug'] . '/readme.txt' ) {
129
+ if ( FALSE === zip_entry_open( $resource_handle, $dir_ent, 'rb' ) ) {
130
+ // Error
131
+ echo $errmsg_before
132
+ . 'php function zip_entry_open failed to open readme.txt file compressed within plugin .zip file in WordPress Repository'
133
+ . $errmsg_after;
134
+ } else {
135
+ $filesize = zip_entry_filesize( $dir_ent );
136
+ if ( !is_int( $filesize ) || ( $filesize < 100 ) ) {
137
+ // Error
138
+ echo $errmsg_before
139
+ . 'Size, in bytes, of readme.txt file is being incorrectly reported by php function zip_entry_filesize as '
140
+ . var_export( $filesize, TRUE )
141
+ . $errmsg_after;
142
+ } else {
143
+ $readme_content = zip_entry_read( $dir_ent, $filesize );
144
+ if ( ( $readme_content === FALSE ) || ( $readme_content === '' ) ) {
145
+ // Error
146
+ echo $errmsg_before
147
+ . 'php function zip_entry_read failed to read readme.txt file compressed within plugin .zip file in WordPress Repository'
148
+ . $errmsg_after;
149
+ } else {
150
+ if ( FALSE === zip_entry_close( $dir_ent ) ) {
151
+ // Error
152
+ echo $errmsg_before
153
+ . 'php function zip_entry_close failed to close readme.txt file compressed within plugin .zip file in WordPress Repository'
154
+ . $errmsg_after;
155
+ } else {
156
+ // Alternate: file_put_contents( jr_mt_path() . 'readme.txt', $readme_content );
157
+ $write_return = jr_filesystem_text_write( $readme_content, 'readme.txt', jr_mt_path() );
158
+ if ( is_wp_error( $write_return ) || ( FALSE === $write_return ) ) {
159
+ // Error
160
+ echo $errmsg_before
161
+ . 'WP_filesystem failed to store readme.txt file as part of download/update process from WordPress Repository'
162
+ . $errmsg_after;
163
+ }
164
+ }
165
+ }
166
+ }
167
+ }
168
+ // Get out of While loop because we have found and processed readme.txt
169
+ $find_readme = FALSE;
170
+ }
171
+ }
172
+ }
173
+ zip_close( $resource_handle );
174
+ }
175
+ // Delete temporary download file
176
+ if ( !unlink( $file_name ) ) {
177
+ echo $errmsg_before
178
+ . "php unlink function failed to delete downloaded readme.txt in temporary download file $file_name"
179
+ . $errmsg_after;
180
+ }
181
+ }
182
+ $current = TRUE;
183
+ } else {
184
+ // Recommend updating Plugin to latest version which supports the version of WordPress being run,
185
+ // but the currently-installed version of the Plugin does not.
186
+ echo '<h3>Warning</h3><p>This plugin is out of date and should be updated for performance and reliability reasons.'
187
+ . ' Plugin updates are shown on the Plugins-Installed Plugins page and the Dashboard-Updates page here in the Admin panels.</p>';
188
+ }
189
+ }
190
+ }
191
+ } else {
192
+ // Currently-installed version of Plugin supports currently-installed version of WordPress
193
+ $current = TRUE;
194
+ }
195
+
196
+ global $jr_mt_plugins_cache;
197
+
198
+ $compatible = TRUE;
199
+
200
+ // Check for incompatible plugins that have been activated: BuddyPress and Theme Test Drive
201
+ global $jr_mt_incompat_plugins;
202
+ foreach ( $jr_mt_plugins_cache as $rel_path => $plugin_data ) {
203
+ if ( in_array( $plugin_data['Name'], $jr_mt_incompat_plugins ) && is_plugin_active( $rel_path ) ) {
204
+ if ( $compatible ) {
205
+ echo '<h3>Plugin Conflict Error Detected</h3>';
206
+ $compatible = FALSE;
207
+ }
208
+ echo '<p>This Plugin (' . $jr_mt_plugin_data['Name'] . ') cannot be used when the <b>' . $plugin_data['Name']
209
+ . '</b> plugin is Activated. If you wish to use the ' . $jr_mt_plugin_data['Name']
210
+ . ' plugin, please deactivate the ' . $plugin_data['Name']
211
+ . ' plugin (not just when using this Settings page, but whenever the '
212
+ . $jr_mt_plugin_data['Name'] . ' plugin is activated).</p>';
213
+ }
214
+ }
215
+
216
+ if ( $compatible ) {
217
+ ?>
218
+ <h3>Overview</h3>
219
+ <p>This Plugin allows you to selectively change the Theme you have selected as your <b>Current Theme</b> in <b>Appearance-Themes</b> on the Admin panels.
220
+ You can choose from any of the <b>Available Themes</b> listed on the Appearance-Themes Admin panel for:
221
+ <ul>
222
+ <li> &raquo; All Pages</li>
223
+ <li> &raquo; All Posts</li>
224
+ <li> &raquo; Everything (see Advanced Settings below)</li>
225
+ <li> &raquo; The Site Home</li>
226
+ <li> &raquo; A Specific Page</li>
227
+ <li> &raquo; A Specific Post</li>
228
+ <li> &raquo; Any other non-Admin page that has its own Permalink; for example, a specific Archive or Category page</li>
229
+ </ul>
230
+ </p>
231
+ <h3>Important Notes</h3>
232
+ <?php
233
+ if ( function_exists('is_multisite') && is_multisite() ) {
234
+ echo "In a WordPress Network (AKA Multisite), Themes must be <b>Network Enabled</b> before they will appear as Available Themes on individual sites' Appearance-Themes panel.";
235
+ }
236
+ echo '<p>';
237
+ echo "The Current Theme, defined to WordPress in Appearance-Themes admin panel, is <b>$theme</b>.";
238
+ $settings = get_option( 'jr_mt_settings' );
239
+ if ( trim( $settings['current'] ) ) {
240
+ echo " But it is being overridden in Advanced Settings (see below), which set the plugin's default Theme to <b>";
241
+ echo wp_get_theme( $settings['current'] )->Name;
242
+ echo '</b>. You will not normally need to specify this default Theme in any of the other Settings on this page, though you will need to specify the WordPress Current Theme wherever you want it appear. Or, if you specify a different Theme for All Pages, All Posts or Everything, and wish to use the default Theme for one or more specific Pages, Posts or other non-Admin pages.';
243
+ } else {
244
+ echo ' You will not normally need to specify it in any of the Settings on this page. The only exception would be if you specify a different Theme for All Pages, All Posts or Everything, and wish to use the Current Theme for one or more specific Pages, Posts or other non-Admin pages.';
245
+ }
246
+ echo '</p>';
247
+ if ( $jr_mt_plugin_data['read readme'] ) {
248
+ if ( $current ) {
249
+ echo '<p>This Plugin (' . $jr_mt_plugin_data['Name'] . ') has been tested with the version of WordPress you are currently running: '
250
+ . $current_wp_version . '</p>';
251
+ }
252
+ } else {
253
+ echo '<p>Compatibility checks could not be done because the plugin was unable to read its readme.txt file, likely a user/permissions hosting issue.</p>';
254
+ }
255
+ if ( jr_mt_plugin_update_available() ) {
256
+ echo '<p>A new version of this Plugin (' . $jr_mt_plugin_data['Name'] . ') is available from the WordPress Repository.'
257
+ . ' We strongly recommend updating ASAP because new versions fix problems that users like yourself have reported to us.'
258
+ . ' <a class="thickbox" title="' . $jr_mt_plugin_data['Name'] . '" href="' . network_admin_url()
259
+ . 'plugin-install.php?tab=plugin-information&plugin=' . $jr_mt_plugin_data['slug']
260
+ . '&section=changelog&TB_iframe=true&width=640&height=768">Click here</a> for more details.</p>';
261
+ }
262
+ echo '<form action="options.php" method="POST">';
263
+
264
+ // Plugin Settings are displayed and entered here:
265
+ settings_fields( 'jr_mt_settings' );
266
+ do_settings_sections( 'jr_mt_settings_page' );
267
+ echo '<p><input name="save" type="submit" value="Save Changes" class="button-primary" /></p></form>';
268
+ }
269
+
270
+ echo '<hr /><h3>System Information</h3><p>You are currently running:<ul>';
271
+ echo "<li> &raquo; The {$jr_mt_plugin_data['Name']} plugin Version {$jr_mt_plugin_data['Version']}</li>";
272
+ echo "<li> &nbsp; &raquo;&raquo; The Path to the plugin's directory is " . rtrim( jr_mt_path(), '/' ) . '<li>';
273
+ echo "<li> &nbsp; &raquo;&raquo; The URL to the plugin's directory is " . plugins_url() . "/{$jr_mt_plugin_data['slug']}</li>";
274
+ echo "<li> &raquo; WordPress Version $current_wp_version</li>";
275
+ echo '<li> &nbsp; &raquo;&raquo; WordPress language is set to ' , get_bloginfo( 'language' ) . '</li>';
276
+ echo '<li> &raquo; ' . php_uname( 's' ) . ' operating system, Release/Version ' . php_uname( 'r' ) . ' / ' . php_uname( 'v' ) . '</li>';
277
+ echo '<li> &raquo; ' . php_uname( 'm' ) . ' computer hardware</li>';
278
+ echo '<li> &raquo; Host name ' . php_uname( 'n' ) . '</li>';
279
+ echo '<li> &raquo; php Version ' . phpversion() . '</li>';
280
+ echo '<li> &nbsp; &raquo;&raquo; php memory_limit ' . ini_get('memory_limit') . '</li>';
281
+ echo '<li> &raquo; Zend engine Version ' . zend_version() . '</li>';
282
+ echo '<li> &raquo; Web Server software is ' . getenv( 'SERVER_SOFTWARE' ) . '</li>';
283
+ if ( function_exists( 'apache_get_version' ) && ( FALSE !== $apache = apache_get_version() ) ) {
284
+ echo "<li> &nbsp; &raquo;&raquo; Apache Version $apache</li>";
285
+ }
286
+ global $wpdb;
287
+ echo '<li> &raquo; MySQL Version ' . $wpdb->get_var( 'SELECT VERSION();', 0, 0 ) . '</li>';
288
+
289
+ echo '</ul></p>';
290
+ }
291
+
292
+ add_action( 'admin_init', 'jr_mt_admin_init' );
293
+
294
+ /**
295
+ * Register and define the settings
296
+ *
297
+ * Everything to be stored and/or can be set by the user
298
+ *
299
+ */
300
+ function jr_mt_admin_init() {
301
+ register_setting( 'jr_mt_settings', 'jr_mt_settings', 'jr_mt_validate_settings' );
302
+ add_settings_section( 'jr_mt_all_settings_section',
303
+ 'For All Pages, All Posts and/or Site Home',
304
+ 'jr_mt_all_settings_expl',
305
+ 'jr_mt_settings_page'
306
+ );
307
+ $suffix = array(
308
+ 'Pages' => '<br />(Pages created with Add Page)',
309
+ 'Posts' => ''
310
+ );
311
+ foreach ( array( 'Pages', 'Posts' ) as $thing ) {
312
+ add_settings_field( 'all_' . strtolower( $thing ), "Select Theme for All $thing" . $suffix[$thing], 'jr_mt_echo_all_things', 'jr_mt_settings_page', 'jr_mt_all_settings_section',
313
+ array( 'thing' => $thing ) );
314
+ }
315
+ add_settings_field( 'site_home',
316
+ 'Select Theme for Site Home<br />(' . get_home_url() . ')',
317
+ 'jr_mt_echo_site_home',
318
+ 'jr_mt_settings_page',
319
+ 'jr_mt_all_settings_section'
320
+ );
321
+ $settings = get_option( 'jr_mt_settings' );
322
+ $ids = $settings['ids'];
323
+ if ( !empty( $ids) ) {
324
+ add_settings_section( 'jr_mt_delete_settings_section',
325
+ 'To Display or Delete Theme Selections for Individual Pages or Posts',
326
+ 'jr_mt_delete_settings_expl',
327
+ 'jr_mt_settings_page'
328
+ );
329
+ add_settings_field( 'del_entry', 'Entries:', 'jr_mt_echo_delete_entry', 'jr_mt_settings_page', 'jr_mt_delete_settings_section' );
330
+ }
331
+ add_settings_section( 'jr_mt_single_settings_section',
332
+ 'For An Individual Page, Post or other non-Admin page;<br />or a group of pages, specified by URL Prefix',
333
+ 'jr_mt_single_settings_expl',
334
+ 'jr_mt_settings_page'
335
+ );
336
+ add_settings_field( 'add_theme', 'Theme', 'jr_mt_echo_add_theme', 'jr_mt_settings_page', 'jr_mt_single_settings_section' );
337
+ add_settings_field( 'add_path_id', 'URL of Page, Post, Prefix or other', 'jr_mt_echo_add_path_id', 'jr_mt_settings_page', 'jr_mt_single_settings_section' );
338
+ add_settings_field( 'add_is_prefix', 'Select here if URL is a Prefix', 'jr_mt_echo_add_is_prefix', 'jr_mt_settings_page', 'jr_mt_single_settings_section' );
339
+ add_settings_section( 'jr_mt_advanced_settings_section',
340
+ 'Advanced Settings',
341
+ 'jr_mt_advanced_settings_expl',
342
+ 'jr_mt_settings_page'
343
+ );
344
+ add_settings_field( 'current',
345
+ 'Select Theme for Everything, to Override WordPress Current Theme (<b>' . wp_get_theme()->Name . '</b>)',
346
+ 'jr_mt_echo_current',
347
+ 'jr_mt_settings_page',
348
+ 'jr_mt_advanced_settings_section'
349
+ );
350
+ }
351
+
352
+ /**
353
+ * Section text for Section1
354
+ *
355
+ * Display an explanation of this Section
356
+ *
357
+ */
358
+ function jr_mt_all_settings_expl() {
359
+ ?>
360
+ <p>
361
+ In this section, you can select a different Theme for All Pages, All Posts and/or Site Home.
362
+ To remove a previously selected Theme, select the blank entry from the drop-down list.
363
+ </p>
364
+ <p>
365
+ In the <i>next</i> section, you will be able to select a Theme, including the Current Theme, to override any choice you make here, for individual Pages, Posts or
366
+ any other non-Admin pages that have their own Permalink; for example, specific Archive or Category pages.
367
+ Or groups of Pages, Posts or any other non-Admin pages that share the same URL Prefix.
368
+ </p>
369
+ <?php
370
+ }
371
+
372
+ function jr_mt_echo_all_things( $thing ) {
373
+ $settings = get_option( 'jr_mt_settings' );
374
+ $field = 'all_' . strtolower( $thing['thing'] );
375
+ jr_mt_themes_field( $field, $settings[$field], 'jr_mt_settings', TRUE );
376
+ }
377
+
378
+ function jr_mt_echo_site_home() {
379
+ $settings = get_option( 'jr_mt_settings' );
380
+ jr_mt_themes_field( 'site_home', $settings['site_home'], 'jr_mt_settings', FALSE );
381
+ }
382
+
383
+ /**
384
+ * Section text for Section2
385
+ *
386
+ * Display an explanation of this Section
387
+ *
388
+ */
389
+ function jr_mt_delete_settings_expl() {
390
+ ?>
391
+ <p>
392
+ In this section, all entries are displayed for Themes selected for individual Pages, Posts
393
+ and any other non-Admin pages that have their own Permalink; for example, specific Archive or Category pages.
394
+ Or groups of Pages, Posts or any other non-Admin pages that share the same URL Prefix.
395
+ </p>
396
+ <p>
397
+ You can delete any of these entries by filling in the check box beside each one.
398
+ To change the Theme for an entry, add the same entry with a different Theme in the section below this one.</p>
399
+ <?php
400
+ }
401
+
402
+ function jr_mt_echo_delete_entry() {
403
+ $entry_num = 0;
404
+ $settings = get_option( 'jr_mt_settings' );
405
+ foreach ( $settings['ids'] as $path_id => $opt_array ) {
406
+ ++$entry_num;
407
+ echo "Delete <input type='checkbox' id='del_entry' name='jr_mt_settings[del_entry][]' value='$path_id' /> &nbsp; Theme="
408
+ . wp_get_theme( $opt_array['theme'] )->Name . '; ';
409
+ if ( $path_id == '' ) {
410
+ echo 'Site=<a href="' . get_home_url() . '" target="_blank">Home</a>';
411
+ } else {
412
+ if ( $opt_array['type'] == 'prefix' ) {
413
+ echo 'Prefix=<a href="' . get_home_url() . "/$path_id" . '" target="_blank">' . "$path_id</a>";
414
+ } else {
415
+ if ( $opt_array['type'] == 'cat' ) {
416
+ echo 'Category=<a href="' . get_home_url() . '/?cat=' . $opt_array['id'] . '" target="_blank">' . get_cat_name( $opt_array['id'] ) . '</a>';
417
+ } else {
418
+ if ( $opt_array['type'] == 'archive' ) {
419
+ echo 'Archive=<a href="' . get_home_url() . '/?m=' . $opt_array['id'] . '" target="_blank">' . $opt_array['id'] . '</a>';
420
+ } else {
421
+ $p_array = get_posts( array( 'post_type' => 'any', 'include' => array( $path_id ) ) );
422
+ if ( empty( $p_array ) ) {
423
+ if ( $opt_array['type'] == 'admin' ) {
424
+ echo 'Admin=<a href="' . get_home_url() . '/' . $opt_array['rel_url'] . '" target="_blank">' . "$path_id</a>";
425
+ } else {
426
+ echo 'Path=<a href="' . get_home_url() . "/$path_id" . '" target="_blank">' . "$path_id</a>";
427
+ }
428
+ } else {
429
+ echo ucfirst( $p_array[0]->post_type ) . '=<a href="' . get_permalink( $path_id ) . '" target="_blank">' . $p_array[0]->post_title . '</a>';
430
+ }
431
+ }
432
+ }
433
+ }
434
+ }
435
+ echo '<br />';
436
+ }
437
+ }
438
+
439
+ /**
440
+ * Section text for Section3
441
+ *
442
+ * Display an explanation of this Section
443
+ *
444
+ */
445
+ function jr_mt_single_settings_expl() {
446
+ ?>
447
+ <p>
448
+ Select a Theme for an individual Page, Post or
449
+ any other non-Admin page that has its own Permalink; for example, a specific Archive or Category page.
450
+ Or for a group of pages which have URLs that all begin with the same characters ("Prefix").
451
+ </p>
452
+ <p>
453
+ Then cut and paste the URL of the desired Page, Post, Prefix or other non-Admin page.
454
+ And click the <b>Save Changes</b> button to add the entry.
455
+ </p>
456
+ <?php
457
+ }
458
+
459
+ function jr_mt_echo_add_theme() {
460
+ jr_mt_themes_field( 'add_theme', '', 'jr_mt_settings', FALSE );
461
+ }
462
+
463
+ function jr_mt_echo_add_path_id() {
464
+ ?>
465
+ <input id="add_path_id" name="jr_mt_settings[add_path_id]" type="text" size="100" maxlength="256" value="" />
466
+ <br />
467
+ (cut and paste URL here of Page, Post, Prefix or other)
468
+ <br />
469
+ URL must begin with
470
+ <?php
471
+ echo trim( get_home_url(), '\ /' ) . '/';
472
+ }
473
+
474
+ function jr_mt_echo_add_is_prefix() {
475
+ ?>
476
+ <input type="checkbox" id="add_is_prefix" name="jr_mt_settings[add_is_prefix]" value="true" /> Anything that begins with this URL will use this Theme
477
+ <?php
478
+ }
479
+
480
+ /**
481
+ * Section text for Section4
482
+ *
483
+ * Display an explanation of this Section
484
+ *
485
+ */
486
+ function jr_mt_advanced_settings_expl() {
487
+ ?>
488
+ <p>
489
+ <b>Warning:</b>
490
+ As the name of the section implies, Advanced Settings
491
+ may surprise you with unintended consequences,
492
+ so please be careful.
493
+ </p>
494
+ <p>
495
+ <b>Theme for Everything</b> simplifies the use of a Theme with Admin panel settings that you need to change frequently,
496
+ when the Theme is only going to be used on one or more Pages or Posts.
497
+ The Theme can be set as the WordPress Current Theme through the Appearance-Themes admin panel,
498
+ and set for specific Pages or Posts using this plugin's settings (above),
499
+ with another Theme specified below as the plugin's default theme ("Theme for Everything").
500
+ </p>
501
+ <?php
502
+ }
503
+
504
+ function jr_mt_echo_current() {
505
+ $settings = get_option( 'jr_mt_settings' );
506
+ jr_mt_themes_field( 'current', $settings['current'], 'jr_mt_settings', TRUE );
507
+ echo '<br />(select blank entry for default: WordPress Current Theme defined in Appearance-Themes, currently <b>' . wp_get_theme()->Name . '</b>)';
508
+ }
509
+
510
+ function jr_mt_validate_settings( $input ) {
511
+ $valid = array();
512
+ foreach ( array( 'all_pages', 'all_posts', 'site_home', 'current' ) as $thing ) {
513
+ $valid[$thing] = $input[$thing];
514
+ }
515
+
516
+ $settings = get_option( 'jr_mt_settings' );
517
+ $ids = $settings['ids'];
518
+ if ( isset ( $input['del_entry'] ) ) {
519
+ foreach ( $input['del_entry'] as $del_entry ) {
520
+ unset( $ids[$del_entry] );
521
+ }
522
+ }
523
+
524
+ /* Handle troublesome %E2%80%8E UTF Left-to-right Mark (LRM) suffix first.
525
+ */
526
+ if ( FALSE === stripos( $input['add_path_id'], '%E2%80%8E' ) ) {
527
+ if ( FALSE === stripos( rawurlencode( $input['add_path_id'] ), '%E2%80%8E' ) ) {
528
+ $url = $input['add_path_id'];
529
+ } else {
530
+ $url = rawurldecode( str_ireplace( '%E2%80%8E', '', rawurlencode( $input['add_path_id'] ) ) );
531
+ }
532
+ } else {
533
+ $url = str_ireplace( '%E2%80%8E', '', $input['add_path_id'] );
534
+ }
535
+ $url = rawurldecode( trim( $url ) );
536
+
537
+ if ( ( empty( $input['add_theme'] ) && !empty( $url ) ) || ( !empty( $input['add_theme'] ) && empty( $url ) ) ) {
538
+ add_settings_error(
539
+ 'jr_mt_settings',
540
+ 'jr_mt_emptyerror',
541
+ 'Both URL and Theme must be specified to add an Individual entry',
542
+ 'error'
543
+ );
544
+ } else {
545
+ if ( !empty( $url ) ) {
546
+ $validate_url = jr_mt_site_url( $url );
547
+ if ( $validate_url === TRUE ) {
548
+ extract( jr_mt_url_to_id( $url ) );
549
+ if ( isset ( $input['add_is_prefix'] ) && ( $input['add_is_prefix'] == "true" ) ) {
550
+ if ( parse_url( $url, PHP_URL_QUERY ) === NULL ) {
551
+ $ids[$rel_url] = array(
552
+ 'theme' => $input['add_theme'],
553
+ 'type' => 'prefix',
554
+ 'id' => $id,
555
+ 'page_url' => $page_url,
556
+ 'rel_url' => $rel_url,
557
+ 'url' => $url
558
+ );
559
+ } else {
560
+ add_settings_error(
561
+ 'jr_mt_settings',
562
+ 'jr_mt_queryerror',
563
+ '?key=val&key=val Queries are not supported in a URL Prefix',
564
+ 'error'
565
+ );
566
+
567
+ }
568
+ } else {
569
+ if ( $home ) {
570
+ add_settings_error(
571
+ 'jr_mt_settings',
572
+ 'jr_mt_homeerror',
573
+ 'Please use "Select Theme for Site Home" field instead of specifying Site Home URL as an individual entry.',
574
+ 'error'
575
+ );
576
+ } else {
577
+ if ( $type == 'admin' ) {
578
+ add_settings_error(
579
+ 'jr_mt_settings',
580
+ 'jr_mt_adminerror',
581
+ 'Admin Page URLs are not allowed because no known Themes alter the appearance of Admin pages.',
582
+ 'error'
583
+ );
584
+ } else {
585
+ if ( $id === FALSE ) {
586
+ $key = $page_url;
587
+ } else {
588
+ $key = $id;
589
+ }
590
+ $ids[$key] = array(
591
+ 'theme' => $input['add_theme'],
592
+ 'type' => $type,
593
+ 'id' => $id,
594
+ 'page_url' => $page_url,
595
+ 'rel_url' => $rel_url,
596
+ 'url' => $url
597
+ );
598
+ }
599
+ }
600
+ }
601
+ /*
602
+ $errors = get_settings_errors();
603
+ if ( empty( $errors ) ) {
604
+ // Here is where to check if URL gives a 404, but it doesn't work, always getting 302, and obliterating Settings Saved message
605
+ if ( 404 == $respcode = wp_remote_retrieve_response_code( wp_remote_head( $url ) ) ) {
606
+ add_settings_error(
607
+ 'jr_mt_settings',
608
+ 'jr_mt_urlerror',
609
+ "Warning: URL specified ('$url') generated error response $respcode",
610
+ 'error'
611
+ );
612
+ }
613
+ }
614
+ */
615
+ } else {
616
+ add_settings_error(
617
+ 'jr_mt_settings',
618
+ 'jr_mt_urlerror',
619
+ "URL specified for Individual page/post: '$url'. $validate_url",
620
+ 'updated'
621
+ );
622
+ }
623
+ }
624
+ }
625
+ $errors = get_settings_errors();
626
+ if ( empty( $errors ) ) {
627
+ add_settings_error(
628
+ 'jr_mt_settings',
629
+ 'jr_mt_saved',
630
+ 'Settings Saved',
631
+ 'updated'
632
+ );
633
+ }
634
+ $valid['ids'] = $ids;
635
+ return $valid;
636
+ }
637
+
638
+ // $theme_name is the name of the Theme's folder within the Theme directory
639
+ function jr_mt_themes_field( $field_name, $theme_name, $setting, $excl_current_theme ) {
640
+ echo "<select id='$field_name' name='$setting" . "[$field_name]' size='1'>";
641
+ if ( empty( $theme_name ) ) {
642
+ $selected = 'selected="selected"';
643
+ } else {
644
+ $selected = '';
645
+ }
646
+ echo "<option value='' $selected></option>";
647
+ global $jr_mt_themes_cache;
648
+ foreach ( $jr_mt_themes_cache as $folder => $theme_obj ) {
649
+ if ( $excl_current_theme ) {
650
+ if ( ( jr_mt_current_theme( 'stylesheet' ) == $theme_obj['stylesheet'] ) && ( jr_mt_current_theme( 'template' ) == $theme_obj['template'] ) ) {
651
+ // Skip the Current Theme
652
+ continue;
653
+ }
654
+ }
655
+ if ( $theme_name == $folder ) {
656
+ $selected = 'selected="selected"';
657
+ } else {
658
+ $selected = '';
659
+ }
660
+ $name = $theme_obj->Name;
661
+ echo "<option value='$folder' $selected>$name</option>";
662
+ }
663
+ echo '</select>' . PHP_EOL;
664
+ }
665
+
666
+ ?>
includes/debug/debug.php ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ // Exit if .php file accessed directly
3
+ if ( !defined( 'ABSPATH' ) ) exit;
4
+
5
+
6
+ /* require_once( jr_mt_path() . 'includes/debug/debug.php' );
7
+ jr_dump( 'jr_mt_validate_settings $input', $input );
8
+ */
9
+
10
+ function jr_dump( $comment, $dump_var ) {
11
+ $file_name = 'jonradio-dump.txt';
12
+
13
+ $header = '***' . current_time('mysql') . ': ' . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
14
+ ob_start();;
15
+ echo "$comment: ";
16
+ var_dump( $dump_var );
17
+ $output = ob_get_clean() . jr_dump_env();
18
+ if ( function_exists('is_multisite') && is_multisite() ) {
19
+ global $site_id, $blog_id;
20
+ $file_name = $site_id . '-' . $blog_id . '-' . $file_name;
21
+ }
22
+ $file = fopen( plugin_dir_path( __FILE__ ) . $file_name, 'at' );
23
+ fwrite( $file, $header . PHP_EOL . $output );
24
+ fclose( $file );
25
+
26
+ return;
27
+ }
28
+
29
+ function jr_dump_env() {
30
+ global $jr_dump_env_first;
31
+ if ( isset( $jr_dump_env_first ) ) {
32
+ $output = '';
33
+ } else {
34
+ $jr_dump_env_first = FALSE;
35
+ $output = PHP_EOL;
36
+
37
+ }
38
+ return $output;
39
+ }
40
+ ?>
includes/debug/index.html ADDED
File without changes
includes/functions.php ADDED
@@ -0,0 +1,371 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ // Exit if .php file accessed directly
3
+ if ( !defined( 'ABSPATH' ) ) exit;
4
+
5
+
6
+ /**
7
+ * Return WordPress Current Theme, as defined in Appearance Admin panels
8
+ *
9
+ * Obtains Folder Name of Current Theme, from 'template' option of wp_load_alloptions().
10
+ *
11
+ * @param string $option parameter to select current template or stylesheet
12
+ * @return string type Folder Name of Current Theme
13
+ */
14
+ function jr_mt_current_theme( $option ) {
15
+ global $jr_mt_options_cache;
16
+ return $jr_mt_options_cache[$option];
17
+ }
18
+
19
+ /**
20
+ * Given URL, return post or page ID, if possible, and relative path if not
21
+ *
22
+ * Calls jr_mt_query_keywords.
23
+ *
24
+ * @param string $url full URL of WordPress page, post, admin, etc.
25
+ * @return array array with keys of "type", "id" and "page_url":
26
+ * string type "pages", "posts" or "admin"
27
+ * string id Page ID or Post ID or FALSE
28
+ * string page_url relative URL WordPress page, post, admin, etc. or FALSE
29
+ * string rel_url URL relative to WordPress home
30
+ * bool home is URL Site Home?
31
+ */
32
+ function jr_mt_url_to_id( $url_orig ) {
33
+ // Some hosts, likely only IIS, insert an erroneous "/index.php" into the middle of the Permalink in $_SERVER['REQUEST_URI']
34
+ $url = str_replace( '/index.php', '', $url_orig );
35
+
36
+ $trim = '\ /'; // remove leading and trailing backslashes, blanks and forward slashes
37
+
38
+ $is_home = FALSE;
39
+
40
+ // get_home_url() returns "https://subdomain.domain.com/wp" - the full URL of the home page of the site
41
+ $home = trim( parse_url( get_home_url(), PHP_URL_PATH ), $trim ); // "wp"
42
+
43
+ $admin_home = trim( parse_url( admin_url(), PHP_URL_PATH ), $trim );
44
+ $page_url = trim( parse_url( $url, PHP_URL_PATH ), $trim ); // "wp/fruit/apples"
45
+ $is_admin = ( $admin_home == substr( $page_url, 0, strlen( $admin_home ) ) );
46
+ if ( !empty( $home ) ) { // Only if WordPress is installed in a subfolder, NOT in the Root
47
+ $page_url = trim( substr( $page_url, stripos( $page_url, $home ) + strlen( $home ) ), $trim ); // "fruit/apples"
48
+ }
49
+ $rel_url = $page_url;
50
+
51
+ $type = FALSE;
52
+
53
+ $id = jr_mt_query_keywords( parse_url( $url, PHP_URL_QUERY ) );
54
+ if ( $id === NULL ) {
55
+ if ( $is_admin ) {
56
+ $id = FALSE;
57
+ $type = 'admin';
58
+ } else {
59
+ // Check for home page (url_to_postid() does not work for home page)
60
+ if ( empty( $page_url ) ) {
61
+ $is_home = TRUE;
62
+ $id = get_option('page_on_front');
63
+ if ( $id == 0 ) {
64
+ // There is no home Page; posts are displayed instead on the home page
65
+ $page_url = '';
66
+ $id = FALSE;
67
+ } else {
68
+ $type = 'pages';
69
+ }
70
+ } else {
71
+ global $wp_rewrite;
72
+ if ( is_null( $wp_rewrite ) ) {
73
+ $GLOBALS['wp_rewrite'] = new WP_Rewrite();
74
+ }
75
+ global $wp;
76
+ if ( is_null( $wp ) ) {
77
+ $GLOBALS['jr_mt_cache'] = FALSE;
78
+ $wp = (object) array( 'public_query_vars' => array() );
79
+ } else {
80
+ if ( !isset( $wp->public_query_vars ) ) {
81
+ $GLOBALS['jr_mt_cache'] = FALSE;
82
+ $wp->public_query_vars = array();
83
+ }
84
+ }
85
+ $id = url_to_postid( $url );
86
+ if ( $id == 0 ) {
87
+ $page = get_page_by_path( $page_url );
88
+ if ( $page === NULL ) {
89
+ // get_page_by_path() returns NULL for Posts, Home Page, Admin, etc.
90
+ // So, check for Posts:
91
+ $post = get_posts( array( 'name' => $page_url ) );
92
+ if ( empty( $post ) ) {
93
+ $id = FALSE;
94
+ } else {
95
+ $id = $post[0]->ID;
96
+ $type = 'posts';
97
+ }
98
+ } else {
99
+ $id = $page->ID;
100
+ $type = 'pages';
101
+ }
102
+ } else {
103
+ $post_obj = get_post( $id );
104
+ if ( $post_obj->post_type == 'page' ) {
105
+ $type = 'pages';
106
+ } else {
107
+ if ( $post_obj->post_type == 'post' ) {
108
+ $type = 'posts';
109
+ }
110
+ }
111
+ }
112
+ }
113
+ }
114
+ } else {
115
+ // id in query of URL (?keyword=value&keyword=value)
116
+ $type = key( $id );
117
+ $id = $id[$type];
118
+ $page_url = FALSE;
119
+ }
120
+ return array(
121
+ 'type' => $type,
122
+ 'id' => $id,
123
+ 'page_url' => $page_url,
124
+ 'rel_url' => $rel_url,
125
+ 'home' => $is_home
126
+ );
127
+ }
128
+
129
+ /**
130
+ * Return page_id= or p= (post ID) or page= (admin page) value from a URL
131
+ *
132
+ * Calls parse_str function in its own variable space because it could create virtually any variable name!
133
+ * Only looks at page_id=, p= and page= now, but could be expanded to other query keywords.
134
+ *
135
+ * @param string $url_query Query portion (after the ?) in a URL
136
+ * @return var array with key of "pages", "posts" or "admin" and value of page_id=, p= or page=, respectively; or NULL if none are present
137
+ */
138
+ function jr_mt_query_keywords( $url_query ) {
139
+ if ( $url_query === NULL ) {
140
+ return NULL;
141
+ } else {
142
+ parse_str( $url_query );
143
+ if ( isset( $page_id ) ) {
144
+ return array( 'pages' => $page_id );
145
+ } else {
146
+ if ( isset( $p ) ) {
147
+ return array( 'posts' => $p );
148
+ } else {
149
+ if ( isset( $page ) ) {
150
+ return array( 'admin' => $page );
151
+ } else {
152
+ if ( isset( $cat ) ) {
153
+ return array( 'cat' => $cat );
154
+ } else {
155
+ if ( isset( $m ) ) {
156
+ return array( 'archive' => $m );
157
+ } else {
158
+ if ( isset( $s ) ) {
159
+ return array( 'livesearch' => $s );
160
+ } else {
161
+ return NULL;
162
+ }
163
+ }
164
+ }
165
+ }
166
+ }
167
+ }
168
+ }
169
+ }
170
+
171
+ /**
172
+ * Is the URL on the current WordPress web site?
173
+ *
174
+ * Checks if URL begins with Site Home URL.
175
+ *
176
+ * @param string $url URL to be checked to be sure it is "on" the current WordPress web site
177
+ * @return var bool TRUE if URL on current WordPress web site; string error message otherwise
178
+ */
179
+ function jr_mt_site_url( $url ) {
180
+ $check_url = trim( $url );
181
+ if ( strcasecmp( 'http', substr( $check_url, 0, 4 ) ) != 0 ) {
182
+ return 'URL does not begin with http://';
183
+ }
184
+ $site_home = get_home_url();
185
+ if ( strcasecmp( $site_home, substr( $check_url, 0, strlen( $site_home ) ) ) != 0 ) {
186
+ return "URL specified is not part of current WordPress web site. URL must begin with '$site_home'";
187
+ }
188
+ return TRUE;
189
+ }
190
+
191
+ function jr_readme() {
192
+ $readme = array( 'read readme' => FALSE );
193
+ $file_array = jr_filesystem_text_read('readme.txt', jr_mt_path());
194
+ if ( ( FALSE !== $file_array ) && !is_wp_error( $file_array ) ) {
195
+ // Get first non-blank line
196
+ $results = jr_nextline( $file_array, 0 );
197
+ if ( '===' === substr( $results['line'], 0, 3) ) {
198
+ $readme['read readme'] = TRUE;
199
+ $readme['name'] = trim( $results['line'], ' =' );
200
+ do {
201
+ $results = jr_nextline( $file_array, $results['index'] );
202
+ if ( '==' === substr( $results['line'], 0, 2) ) {
203
+ break;
204
+ } else {
205
+ $colon = strpos( $results['line'], ":", 4 );
206
+ if ( $colon !== FALSE ) {
207
+ $key = preg_replace( '/\s+/', ' ', trim( substr( $results['line'], 0, $colon ) ) );
208
+ $readme[$key] = trim( substr( $results['line'], $colon + 1 ) );
209
+ }
210
+ }
211
+ } while ( $results['line'] != "" );
212
+ }
213
+ }
214
+ return $readme;
215
+ }
216
+ function jr_nextline( $file_array, $index ) {
217
+ $line = "";
218
+ while ( ( $index < count( $file_array ) ) && ( $line === "" ) ) {
219
+ $line = trim( $file_array[$index++] );
220
+ };
221
+ return array( 'line' => $line, 'index' => $index );
222
+ // ['line'] of "" indicates End of File
223
+ // ['index'] is the next line to be read
224
+ }
225
+
226
+ /**
227
+ * Initialize Filesystem object
228
+ *
229
+ * @param str $form_url - URL of the page to display request form
230
+ * @param str $method - connection method
231
+ * @param str $context - destination folder
232
+ * @param array $fields - fileds of $_POST array that should be preserved between screens
233
+ * @return bool/str - false on failure, stored text on success
234
+ **/
235
+ function jr_filesystem_init( $form_url, $method, $context, $fields = null ) {
236
+ global $wp_filesystem;
237
+
238
+ /* first attempt to get credentials */
239
+ if (false === ($creds = request_filesystem_credentials($form_url, $method, false, $context, $fields))) {
240
+
241
+ /**
242
+ * if we comes here - we don't have credentials
243
+ * so the request for them is displaying
244
+ * no need for further processing
245
+ **/
246
+ return false;
247
+ }
248
+
249
+ /* now we got some credentials - try to use them*/
250
+ if ( !WP_Filesystem( $creds ) ) {
251
+
252
+ /* incorrect connection data - ask for credentials again, now with error message */
253
+ request_filesystem_credentials($form_url, $method, true, $context);
254
+ return false;
255
+ }
256
+
257
+ return true; //filesystem object successfully initiated
258
+ }
259
+
260
+ /**
261
+ * Read text from file
262
+ *
263
+ * @param str $form_url - URL of the page where request form will be displayed
264
+ * @return bool/str - false on failure, stored text on success
265
+ **/
266
+ function jr_filesystem_text_read($file_name, $context){
267
+ global $wp_filesystem;
268
+
269
+ $text = '';
270
+
271
+ $form_url = wp_nonce_url('themes.php?page=jr_mt_settings', 'filesystem_dummy_screen');
272
+ $method = ''; //leave this empty to perform test for 'direct' writing
273
+
274
+ if(!jr_filesystem_init($form_url, $method, $context))
275
+ return false; //stop further processing when request forms displaying
276
+
277
+ /*
278
+ * now $wp_filesystem could be used
279
+ * get correct target file first
280
+ **/
281
+ $target_dir = $wp_filesystem->find_folder($context);
282
+ $target_file = trailingslashit($target_dir).$file_name;
283
+
284
+ /* read the file */
285
+ if($wp_filesystem->exists($target_file)){ //check for existence
286
+
287
+ $text = $wp_filesystem->get_contents_array($target_file);
288
+ if(!$text)
289
+ return new WP_Error('reading_error', 'Error when reading file'); //return error object
290
+
291
+ }
292
+
293
+ return $text;
294
+ }
295
+
296
+ /**
297
+ * Perform writing into file
298
+ *
299
+ * @param str $form_url - URL of the page to display request form
300
+ * @return bool/str - false on failure, stored text on success
301
+ **/
302
+ function jr_filesystem_text_write( $content, $file_name, $context ) {
303
+ global $wp_filesystem;
304
+
305
+ $method = ''; //leave this empty to perform test for 'direct' writing
306
+ $form_url = wp_nonce_url('themes.php?page=jr_mt_settings', 'filesystem_dummy_screen');
307
+
308
+ if(!jr_filesystem_init($form_url, $method, $context))
309
+ return false; //stop further processing when request form is displaying
310
+
311
+ /*
312
+ * now $wp_filesystem could be used
313
+ * get correct target file first
314
+ **/
315
+ $target_dir = $wp_filesystem->find_folder($context);
316
+ $target_file = trailingslashit($target_dir) . $file_name;
317
+
318
+ /* write into file */
319
+ if(!$wp_filesystem->put_contents($target_file, $content, FS_CHMOD_FILE))
320
+ return new WP_Error('writing_error', 'Error when writing file'); //return error object
321
+
322
+ return $content;
323
+ }
324
+
325
+ /**
326
+ * Update available for Plugin?
327
+ *
328
+ * @return bool - TRUE if an update is available in the WordPress Repository,
329
+ * FALSE if no update is available or if the update_plugins transient is not available
330
+ * (which also results in an error message).
331
+ **/
332
+ function jr_mt_plugin_update_available() {
333
+ global $jr_mt_update_plugins;
334
+ if ( !isset( $jr_mt_update_plugins ) ) {
335
+ $transient = get_site_transient( 'update_plugins' );
336
+ if ( FALSE === $transient ) {
337
+ // Error
338
+ return FALSE;
339
+ } else {
340
+ $jr_mt_update_plugins = $transient;
341
+ }
342
+ }
343
+ if ( empty( $jr_mt_update_plugins->response ) ) {
344
+ return FALSE;
345
+ }
346
+ return array_key_exists( jr_mt_plugin_basename(), $jr_mt_update_plugins->response );
347
+ }
348
+
349
+ /**
350
+ * What Themes are defined to Plugin?
351
+ *
352
+ * @return arr - a list of Themes (folder names) defined in Settings of Plugin
353
+ **/
354
+ function jr_mt_themes_defined() {
355
+ $themes = array();
356
+ $settings = get_option( 'jr_mt_settings' );
357
+ foreach ( $settings as $key => $value ) {
358
+ if ( 'ids' == $key ) {
359
+ foreach ( $value as $id => $arr ) {
360
+ $themes[] = $arr['theme'];
361
+ }
362
+ } else {
363
+ if ( !empty( $value ) ) {
364
+ $themes[] = $value;
365
+ }
366
+ }
367
+ }
368
+ return array_unique( $themes );
369
+ }
370
+
371
+ ?>
includes/index.html ADDED
File without changes
includes/old-wp.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ // Exit if .php file accessed directly
3
+ if ( !defined( 'ABSPATH' ) ) exit;
4
+
5
+ /* A Version of WordPress older than the first one supported by the Plugin
6
+ is being run.
7
+ */
8
+
9
+ add_action( 'all_admin_notices', 'jr_mt_all_admin_notice' );
10
+ // Runs after admin_menu hook
11
+ add_action( 'admin_notices', 'jr_mt_all_admin_notice' ); // for older versions
12
+
13
+ function jr_mt_all_admin_notice() {
14
+ // Only displayed in Admin panels:
15
+ echo '<div class="error">Deactivated the <b>jonradio Multiple Themes</b> plugin: requires WordPress Version 3.4 or newer; you are running Version '
16
+ . get_bloginfo( 'version' ) . '</div>';
17
+ global $jr_mt_file;
18
+ deactivate_plugins( $jr_mt_file );
19
+ }
20
+
21
+ ?>
includes/select-theme.php ADDED
@@ -0,0 +1,153 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ // Exit if .php file accessed directly
3
+ if ( !defined( 'ABSPATH' ) ) exit;
4
+
5
+
6
+ // Select the relevant Theme
7
+
8
+ add_filter( 'pre_option_stylesheet', 'jr_mt_stylesheet' );
9
+ add_filter( 'pre_option_template', 'jr_mt_template' );
10
+
11
+ function jr_mt_stylesheet() {
12
+ return jr_mt_theme( 'stylesheet' );
13
+ }
14
+
15
+ function jr_mt_template() {
16
+ return jr_mt_theme( 'template' );
17
+ }
18
+
19
+ function jr_mt_theme( $option ) {
20
+ /* The hooks that (indirectly) call this function are called repeatedly by WordPress,
21
+ so do the checking once and store the values in a global array.
22
+ $jt_mt_theme['stylesheet'] - Stylesheet Name of Theme chosen
23
+ $jt_mt_theme['template'] - Template Name of Theme chosen
24
+
25
+ Very important note:
26
+ - get_option( 'jr_mt_settings' ) ['ids']['theme'] is the Theme Subdirectory Name,
27
+ as opposed to the Template or Stylesheet Name for the Theme.
28
+ - likewise, the variable local variable $theme
29
+ These three different values for each Theme must be clearly separated, as all three usually
30
+ match, but do not have to, e.g. - Child Themes.
31
+ */
32
+ $GLOBALS['jr_mt_cache'] = TRUE;
33
+ global $jr_mt_theme;
34
+ if ( !isset( $jr_mt_theme ) ) {
35
+ $jr_mt_theme = array();
36
+ }
37
+ if ( !isset( $jr_mt_theme[$option] ) ) {
38
+ $theme = jr_mt_chosen();
39
+ if ( $theme === FALSE ) {
40
+ // Get both at once, to save a repeat of this logic later:
41
+ $jr_mt_theme['stylesheet'] = jr_mt_current_theme( 'stylesheet' );
42
+ $jr_mt_theme['template'] = jr_mt_current_theme( 'template' );
43
+ } else {
44
+ $themes = wp_get_themes();
45
+ $jr_mt_theme['stylesheet'] = $themes[$theme]->stylesheet;
46
+ $jr_mt_theme['template'] = $themes[$theme]->template;
47
+ }
48
+ }
49
+ $theme = $jr_mt_theme[$option];
50
+ global $jr_mt_cache;
51
+ if ( $jr_mt_cache === FALSE ) {
52
+ unset( $jr_mt_theme[$option] );
53
+ }
54
+ return $theme;
55
+ }
56
+
57
+ // Returns FALSE for Current Theme
58
+ function jr_mt_chosen() {
59
+ if ( is_admin() ) {
60
+ // Admin panel
61
+ // return P2 theme if p2ajax= is present; current theme otherwise
62
+ parse_str( $_SERVER['QUERY_STRING'], $keywords );
63
+ if ( isset( $keywords['p2ajax'] ) && array_key_exists( 'p2', wp_get_themes() ) ) {
64
+ $theme = 'p2';
65
+ } else {
66
+ $theme = FALSE; // Current Theme
67
+ }
68
+ } else {
69
+ // Non-Admin page, i.e. - Public Site, etc.
70
+ extract( jr_mt_url_to_id( rawurldecode( parse_url( home_url(), PHP_URL_SCHEME ) . '://' . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'] ) ) );
71
+ if ( ( 'livesearch' === $type ) && ( FALSE !== $livesearch_theme = jr_mt_livesearch_theme() ) ) {
72
+ return $livesearch_theme;
73
+ }
74
+ $settings = get_option( 'jr_mt_settings' );
75
+ if ( $home ) {
76
+ if ( trim( $settings['site_home'] ) != '' ) {
77
+ return $settings['site_home'];
78
+ }
79
+ }
80
+ $ids = $settings['ids'];
81
+ if ( $id === FALSE ) {
82
+ if ( isset( $ids[$page_url] ) ) {
83
+ $theme = $ids[$page_url]['theme'];
84
+ } else {
85
+ $theme = jr_mt_check_all( $type, $rel_url, $ids );
86
+ }
87
+ } else {
88
+ if ( isset( $ids[$id] ) ) {
89
+ $theme = $ids[$id]['theme'];
90
+ } else {
91
+ $theme = jr_mt_check_all( $type, $rel_url, $ids );
92
+ }
93
+ }
94
+ }
95
+ return $theme;
96
+ }
97
+
98
+ // Returns FALSE for Current Theme
99
+ function jr_mt_check_all( $type, $rel_url, $ids ) {
100
+ // Check Prefix entries first, because we already know there is no specific entry for this URL.
101
+ $theme = '';
102
+ $match_length = 0;
103
+ foreach ( $ids as $key => $array ) {
104
+ if ( $array['type'] == 'prefix' ) {
105
+ $this_length = strlen( $array['rel_url'] );
106
+ if ( $array['rel_url'] == substr( $rel_url, 0, $this_length ) ) {
107
+ // Need to find longest match if there are multiple prefix matches.
108
+ if ( $this_length > $match_length ) {
109
+ $theme = $array['theme'];
110
+ $match_length = $this_length;
111
+ }
112
+ }
113
+ }
114
+ }
115
+ // See if a Prefix entry was found
116
+ if ( $match_length == 0 ) {
117
+ if ( $type === FALSE ) {
118
+ $theme = FALSE; // Current Theme
119
+ } else {
120
+ $settings = get_option( 'jr_mt_settings' );
121
+ if ( isset( $settings["all_$type"] ) ) {
122
+ $theme = $settings["all_$type"];
123
+ } else {
124
+ $theme = '';
125
+ }
126
+ if ( empty( $theme ) ) {
127
+ $theme = FALSE; // Current Theme
128
+ }
129
+ }
130
+ }
131
+ return $theme;
132
+ }
133
+
134
+ function jr_mt_livesearch_theme() {
135
+ $livesearch_themes = array( 'knowhow' );
136
+ if ( in_array( jr_mt_current_theme( 'stylesheet' ), $livesearch_themes ) ) {
137
+ return jr_mt_current_theme( 'stylesheet' );
138
+ } else {
139
+ if ( in_array( jr_mt_current_theme( 'template' ), $livesearch_themes ) ) {
140
+ return jr_mt_current_theme( 'template' );
141
+ } else {
142
+ // Go through all the Themes defined in the Plugin's settings
143
+ foreach ( jr_mt_themes_defined() as $theme ) {
144
+ if ( in_array( $theme, $livesearch_themes ) ) {
145
+ return $theme;
146
+ }
147
+ }
148
+ }
149
+ }
150
+ return FALSE;
151
+ }
152
+
153
+ ?>
index.html ADDED
File without changes
jonradio-multiple-themes.php ADDED
@@ -0,0 +1,220 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ Plugin Name: jonradio Multiple Themes
4
+ Plugin URI: http://zatzlabs.com/plugins/
5
+ Description: Select different Themes for one or more, or all WordPress Pages, Posts or other non-Admin pages. Or Site Home.
6
+ Version: 4.5.1
7
+ Author: David Gewirtz
8
+ Author URI: http://zatzlabs.com/plugins/
9
+ License: GPLv2
10
+ */
11
+
12
+ /* Copyright 2013 jonradio (email : info@zatz.com)
13
+
14
+ This program is free software; you can redistribute it and/or modify
15
+ it under the terms of the GNU General Public License as published by
16
+ the Free Software Foundation; either version 2 of the License, or
17
+ (at your option) any later version.
18
+
19
+ This program is distributed in the hope that it will be useful,
20
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
21
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22
+ GNU General Public License for more details.
23
+
24
+ You should have received a copy of the GNU General Public License
25
+ along with this program; if not, write to the Free Software
26
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
27
+ */
28
+
29
+ /* Exit if .php file accessed directly
30
+ */
31
+ if ( !defined( 'ABSPATH' ) ) exit;
32
+
33
+ global $jr_mt_file;
34
+ $jr_mt_file = __FILE__;
35
+
36
+ /* Catch old unsupported version of WordPress before any damage can be done.
37
+ */
38
+ if ( version_compare( get_bloginfo( 'version' ), '3.4', '<' ) ) {
39
+ require_once( plugin_dir_path( __FILE__ ) . 'includes/old-wp.php' );
40
+ } else {
41
+ global $jr_mt_incompat_plugins;
42
+ $jr_mt_incompat_plugins = array( 'Theme Test Drive', 'BuddyPress' );
43
+
44
+ global $jr_mt_path;
45
+ $jr_mt_path = plugin_dir_path( __FILE__ );
46
+ /**
47
+ * Return Plugin's full directory path with trailing slash
48
+ *
49
+ * Local XAMPP install might return:
50
+ * C:\xampp\htdocs\wpbeta\wp-content\plugins\jonradio-multiple-themes/
51
+ *
52
+ */
53
+ function jr_mt_path() {
54
+ global $jr_mt_path;
55
+ return $jr_mt_path;
56
+ }
57
+
58
+ global $jr_mt_plugin_basename;
59
+ $jr_mt_plugin_basename = plugin_basename( __FILE__ );
60
+ /**
61
+ * Return Plugin's Basename
62
+ *
63
+ * For this plugin, it would be:
64
+ * jonradio-multiple-themes/jonradio-multiple-themes.php
65
+ *
66
+ */
67
+ function jr_mt_plugin_basename() {
68
+ global $jr_mt_plugin_basename;
69
+ return $jr_mt_plugin_basename;
70
+ }
71
+
72
+ if ( !function_exists( 'get_plugin_data' ) ) {
73
+ require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
74
+ }
75
+
76
+ global $jr_mt_plugin_data;
77
+ $jr_mt_plugin_data = get_plugin_data( __FILE__ );
78
+ $jr_mt_plugin_data['slug'] = basename( dirname( __FILE__ ) );
79
+
80
+ global $jr_mt_options_cache;
81
+ $all_options = wp_load_alloptions();
82
+ $jr_mt_options_cache['stylesheet'] = $all_options['stylesheet'];
83
+ $jr_mt_options_cache['template'] = $all_options['template'];
84
+
85
+ /* Detect initial activation or a change in plugin's Version number
86
+
87
+ Sometimes special processing is required when the plugin is updated to a new version of the plugin.
88
+ Also used in place of standard activation and new site creation exits provided by WordPress.
89
+ Once that is complete, update the Version number in the plugin's Network-wide settings.
90
+ */
91
+
92
+ if ( ( FALSE === ( $internal_settings = get_option( 'jr_mt_internal_settings' ) ) )
93
+ || empty( $internal_settings['version'] ) )
94
+ {
95
+ /* Plugin is either:
96
+ - updated from a version so old that Version was not yet stored in the plugin's settings, or
97
+ - first use after install:
98
+ - first time ever installed, or
99
+ - installed previously and properly uninstalled (data deleted)
100
+ */
101
+
102
+ $old_version = '0.1';
103
+ } else {
104
+ $old_version = $internal_settings['version'];
105
+ }
106
+
107
+ $settings = get_option( 'jr_mt_settings' );
108
+ if ( empty( $settings ) ) {
109
+ $settings = array(
110
+ 'all_pages' => '',
111
+ 'all_posts' => '',
112
+ 'site_home' => '',
113
+ 'current' => '',
114
+ 'ids' => array()
115
+ );
116
+ /* Add if Settings don't exist, re-initialize if they were empty.
117
+ */
118
+ update_option( 'jr_mt_settings', $settings );
119
+ /* New install on this site, very old version or corrupt settings
120
+ */
121
+ $old_version = $jr_mt_plugin_data['Version'];
122
+ }
123
+
124
+ if ( version_compare( $old_version, $jr_mt_plugin_data['Version'], '!=' ) ) {
125
+ if ( isset( $settings['ids'] ) && is_array( $settings['ids'] ) ) {
126
+ $ids = $settings['ids'];
127
+ } else {
128
+ $ids = array();
129
+ }
130
+ /* Create, if internal settings do not exist; update if they do exist
131
+ */
132
+ $internal_settings['version'] = $jr_mt_plugin_data['Version'];
133
+ update_option( 'jr_mt_internal_settings', $internal_settings );
134
+
135
+ /* Handle all Settings changes made in old plugin versions
136
+ */
137
+ if ( version_compare( $old_version, '2.1', '<' ) ) {
138
+ unset( $settings['all_admin'] );
139
+ // Check for Site Home entry, remove it and set Site Home field
140
+ // And remove all Admin entries (no longer supported)
141
+ if ( isset( $ids[''] ) ) {
142
+ $settings['site_home'] = $ids['']['theme'];
143
+ unset( $ids[''] );
144
+ } else {
145
+ $settings['site_home'] = '';
146
+ }
147
+ foreach ( $ids as $key => $arr ) {
148
+ if ( $arr['type'] == 'admin' ) {
149
+ unset( $ids[$key] );
150
+ }
151
+ }
152
+ }
153
+ if ( version_compare( $old_version, '3.0', '<' ) ) {
154
+ foreach ( $ids as $key => $arr ) {
155
+ if ( strcasecmp( 'http', substr( $arr['rel_url'], 0, 4 ) ) == 0 ) {
156
+ unset( $ids[$key] );
157
+ }
158
+ }
159
+ }
160
+ if ( version_compare( $old_version, '4.1', '<' ) ) {
161
+ // Replace %hex with real character to support languages like Chinese
162
+ foreach ( $ids as $key => $arr ) {
163
+ $newkey = rawurldecode( $key );
164
+ $newarr = $arr;
165
+ unset( $ids[$key] );
166
+ $newarr['page_url'] = rawurldecode( $newarr['page_url'] );
167
+ $newarr['rel_url'] = rawurldecode( $newarr['rel_url'] );
168
+ $newarr['url'] = rawurldecode( $newarr['url'] );
169
+ $ids[$newkey] = $newarr;
170
+ }
171
+ }
172
+ if ( version_compare( $old_version, '4.1.2', '<' ) ) {
173
+ // Add new Current Theme override option
174
+ $settings['current'] = '';
175
+ }
176
+
177
+ $settings['ids'] = $ids;
178
+ update_option( 'jr_mt_settings', $settings );
179
+ }
180
+
181
+ require_once( jr_mt_path() . 'includes/functions.php' );
182
+ require_once( jr_mt_path() . 'includes/select-theme.php' );
183
+
184
+ if ( is_admin() ) {
185
+ // Admin panel
186
+ require_once( jr_mt_path() . 'includes/admin.php' );
187
+ } else {
188
+ // Setting of Blank uses WordPress Current Theme value
189
+ if ( trim( $settings['current'] ) ) {
190
+ $jr_mt_options_cache['stylesheet'] = $settings['current'];
191
+ $jr_mt_options_cache['template'] = $settings['current'];
192
+ }
193
+ }
194
+ }
195
+
196
+ /* Settings structure:
197
+ code - get_option( 'jr_mt_settings' )
198
+ ['all_pages'] => zero length string or folder in Themes directory containing theme to use for All Pages
199
+ ['all_posts'] => zero length string or folder in Themes directory containing theme to use for All Posts
200
+ ['site_home'] => zero length string or folder in Themes directory containing theme to use for Home Page
201
+ ['current'] => zero length string or folder in Themes directory containing theme to override WordPress Current Theme
202
+ ['ids']
203
+ [id] - zero length string or WordPress ID of Page, Post, etc.
204
+ ['type'] => 'page' or 'post' or 'admin' or 'cat' or 'archive' or 'prefix' or other
205
+ ['theme'] => folder in Themes directory containing theme to use
206
+ ['id'] => FALSE or WordPress ID of Page, Post, etc.
207
+ ['page_url'] => relative URL WordPress page, post, admin, etc. or FALSE
208
+ ['rel_url'] => URL relative to WordPress home
209
+ ['url'] => original full URL, from Settings page entry by user
210
+ */
211
+
212
+ /*
213
+ Research Notes:
214
+ The first time one of these Filter Hooks fires, pre_option_stylesheet and pre_option_template, only the following functions can be used to help determine "where" you are in the site:
215
+ - is_admin()
216
+ - is_user_logged_in()
217
+ - get_option("page_on_front") - ID of home page; zero if Reading Settings NOT set to a Static Page of a WordPress Page
218
+ */
219
+
220
+ ?>
readme.txt ADDED
@@ -0,0 +1,329 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ === jonradio Multiple Themes ===
2
+ Contributors: dgewirtz
3
+ Donate link: http://zatzlabs.com/plugins/
4
+ Tags: themes, theme, sections, style, template, stylesheet, accessibility
5
+ Requires at least: 3.4
6
+ Tested up to: 3.6
7
+ Stable tag: 4.5.1
8
+ License: GPLv2 or later
9
+ License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
+
11
+ Select different Themes for one or more, or all WordPress Pages, Posts or other non-Admin pages. Or Site Home.
12
+
13
+ == Description ==
14
+
15
+ Allows the Administrator to specify which Theme will be used on specific Pages, Posts, other non-Admin pages (such as Category or Archive pages) or Site Home; a Prefix feature allows a Theme to be selected based on the initial characters of its URL ("Prefix URL"). Also allows a Theme to be specified for All Pages, All Posts or Everywhere. In turn, even when a Theme is specified for All Pages, All Posts or Everywhere, a different Theme can still be specified for specific Pages or Posts.
16
+
17
+ Think what you could do if you could easily use more than one Theme on your WordPress web site or blog:
18
+
19
+ * Divide your site into Sections, each with its own unique look
20
+ * Style individual Pages, Posts, or other elements (Site Home, Category main page, Archive main page) with a different Theme
21
+ * Select a unique Theme for all Pages, Posts, Attachments, Category pages or Archive pages
22
+ * Make slight variations to a Theme, using Child Themes, for one or more Pages, Posts or other elements (Site Home, Category main page, Archive main page)
23
+ * Supports Multiple Stylesheets for Accessibility and other purposes (create one Child Theme for each Stylesheet)
24
+ * Test a new Theme on one or more Pages or Posts
25
+ * Convert to a new Theme a Page or Post at a time
26
+ * Host multiple mini-web sites on your WordPress site, each with a different Theme
27
+ * When a larger version of an image attachment is displayed, for example, when clicking on a gallery image thumbnail, use a different theme to display it, for one or all images attached to a Page or Post
28
+
29
+ **Use with other Plugins**: **BuddyPress** and Theme Test Drive plugins must both be Deactivated when jonradio Multiple Themes is Activated
30
+
31
+ **Changing Theme Options (Widgets, Sidebars, Menus, Templates, Background, Header, etc.)?**: See the FAQ (Frequently-Asked Questions) tab for important information on changing Options on Themes other than the Current Theme.
32
+
33
+ To select all Pages, Posts, Archives, Categories, etc. that begin with the same partial URL, a "Prefix URL" can be specified by selecting the Prefix checkbox when creating an entry on the Settings page for the jonradio Multiple Themes plugin. Restriction: the Prefix URL cannot contain all or part of a Query, which is the portion of a URL that begins with a question mark ("?"). Although the Prefix cannot contain a Query, URLs containing a Query will be matched by the Prefix.
34
+
35
+ Normally, if a Theme is not specified for a Page, Post, Site Home or other WordPress-displayed web page, such as Category or Archive display, the **Current Theme** specified in **Appearance-Themes** on the Admin panels will be used. The plugin has an Advanced Setting "Select Theme for Everything" that can be used to define a default Theme for the plugin to use instead of the WordPress Current Theme. This is useful for a Theme that has many frequently-used options that are much easier to access when it is the WordPress Current Theme, but there is another Theme to be used everywhere except for a few select Pages or Posts.
36
+
37
+ When selecting a Theme for Site Home or all or specific Pages, Posts or other non-Admin pages, the Theme must be shown in the list of Available Themes on the Appearance-Themes Admin panel. If necessary, install the Theme. In a WordPress Network (AKA Multisite), Themes must be **Network Enabled** before they will appear as Available Themes on individual sites' Appearance-Themes panel.
38
+
39
+ I hesitate to use the term **Theme Switcher** to describe this plugin, because the term has so many meanings. The jonradio Multiple Themes plugin does **not** alter the standard WordPress options that define what Theme is used on your WordPress site. Instead, it dynamically (and selectively) overrides that choice. Technical details aside, what this means is that deactivating or deleting the jonradio Multiple Themes plugin will instantly revert to the WordPress Current Theme that you have defined through the standard WordPress Appearance-Themes Admin panel.
40
+
41
+ == Installation ==
42
+
43
+ This section describes how to install the *jonradio Multiple Themes* plugin and get it working.
44
+
45
+ 1. Use **Add Plugin** within the WordPress Admin panel to download and install this *jonradio Multiple Themes* plugin from the WordPress.org plugin repository (preferred method). Or download and unzip this plugin, then upload the `/jonradio-multiple-themes/` directory to your WordPress web site's `/wp-content/plugins/` directory.
46
+ 1. Activate the *jonradio Multiple Themes* plugin through the **Installed Plugins** Admin panel in WordPress. If you have a WordPress Network ("Multisite"), you can either **Network Activate** this plugin through the **Installed Plugins** Network Admin panel, or Activate it individually on the sites where you wish to use it. Activating on individual sites within a Network avoids some of the confusion created by WordPress' hiding of Network Activated plugins on the Plugin menu of individual sites. Alternatively, to avoid this confusion, you can install the *jonradio Reveal Network Activated Plugins* plugin.
47
+ 1. Be sure that all Themes you plan to use have been installed and are listed under Available Themes on the WordPress Appearance-Themes Admin panel. In a WordPress Network ("Multisite"), Themes must be **Network Enabled** before they will appear as Available Themes on individual sites' Appearance-Themes panel.
48
+ 1. Select Themes to be used on the plugin's **Multiple Themes plugin** Settings page in the WordPress Admin panels, which is found in both the **Appearance** and **Settings** sections. You can also get to this Settings page by clicking on the **Settings** link for this plugin on the **Installed Plugins** page of the Admin panel.
49
+ 1. If you need to change Theme Options (Widgets, Sidebars, Menus, Templates, Background, Header, etc.) for any Theme *other than* the Current Theme, see the FAQ (Frequently-Asked Questions) tab for important information.
50
+
51
+ == Frequently Asked Questions ==
52
+
53
+ = What if a Theme has a lot of Options that I need to change frequently? =
54
+
55
+ You will probably want to make it the WordPress Current Theme defined in the Appearance-Themes admin panel,
56
+ so that you will have instant access to the Theme's many Options, especially if the Theme has its own Section(s) of the Admin panel menu.
57
+
58
+ The plugin's Advanced Setting **Select Theme for Everything** can be used to select another Theme to be used everywhere except for the specific Page(s) or Post(s) where you wish the WordPress Current Theme to appear.
59
+
60
+ = Will this plugin work with Paid Themes? =
61
+
62
+ Yes, in most cases. But we have only tested the few Paid Themes whose authors have provided us with permission to use, without charge, their themes for test purposes. Elegant, for example, allows us to accept copies of its Themes provided by its customers who require assistance with the jonradio Multiple Themes plugin. On the other hand, some other Paid Theme authors have simply ignored our requests, despite our stated willingness to sign a non-disclosure agreement.
63
+
64
+ We do encourage you to contact us if you run into problems when using the jonradio Multiple Themes plugin with a Paid Theme, as the problem may not be unique to the Paid Theme.
65
+
66
+ To state the obvious, the cost of purchasing a license for all Paid Themes for testing purposes is prohibitive for an Open Source plugin such as this one.
67
+
68
+ = How do I change the Theme Options (Widgets, Sidebars, Menus, Background, Header, etc.) used for each Theme? =
69
+
70
+ **NOTE**: See the next FAQ for information on Templates.
71
+
72
+ For the Current Theme, nothing changes when using the jonradio Multiple Themes plugin. Options for the Current Theme, including Widgets, Sidebars, Menus, Background, Header and other Customizations supported by the Theme, can be modified in the Admin panel using the Appearance menu items on the left sidebar and the Customize link displayed beside the Current Theme on the Manage Themes tab of Appearance-Themes.
73
+
74
+ It is more difficult to modify Options for Active Themes that are *not* the Current Theme. We hope to build this functionality into the jonradio Multiple Themes plugin in a future Version, but it is not clear just how practical that is, so the best that can be said is: Maybe.
75
+
76
+ For now, there are two approaches. Except for Widgets, the first approach is the most likely to give you success. Menus, on the other hand, really work well with the first approach, and are severely restricted with the second method.
77
+
78
+ **WARNING**: So far, we have not received any reports of, nor have we tested, using both Method #1 and #2 on the same WordPress site. Use Caution if you plan to do so, as we cannot predict the results.
79
+
80
+ **Method #1:**
81
+
82
+ Set the Theme Options with Live Preview.
83
+
84
+ Note: Widgets cannot be placed using this Method.
85
+
86
+ 1. Go to Appearance-Themes-Live Preview in the Admin panels.
87
+ 1. Use the right sidebar to modify the Theme Options. Note that "Navigation" will not appear until a Custom Menu has been defined in Appearance-Menus. Navigation-Primary Navigation is where you would set the custom menu to be used for the Theme you are currently previewing.
88
+ 1. Click the Save & Activate button.
89
+ 1. Go immediately to Appearance-Themes to reactivate the Current Theme.
90
+
91
+ **Method #2:**
92
+
93
+ Use the Theme Test Drive plugin.
94
+
95
+ Note: this approach only allows Menus to be set for one Theme. Using this method to assign one or more menus to a Theme will unassign menus for all other Themes.
96
+
97
+ The jonradio Multiple Themes plugin (i.e. - this plugin) must be Deactivated, and the Theme Test Drive plugin installed and activated, so that each Theme can be selected with the Theme Test Drive plugin, allowing the Theme's Options to be set "as if" it were the Current Theme.
98
+
99
+ 1. Deactivate jonradio Multiple Themes
100
+ 1. Install the Theme Test Drive plugin found at http://wordpress.org/extend/plugins/theme-test-drive/
101
+ 1. Activate the Theme Test Drive plugin
102
+ 1. Go to Appearance-Theme Test Drive
103
+ 1. In the Usage section, select an alternate Theme you will be using with jonradio Multiple Themes
104
+ 1. Push the Enable Theme Drive button at the bottom
105
+ 1. Go to the WordPress Admin panel's Appearance menu (left sidebar)
106
+ 1. Make your changes to the Theme Options, including Widgets, Sidebars, Menus (see note above about Menus), Background, Header and other Customizations for this alternate Theme (which will appear as if it were the Current Theme)
107
+ 1. If you have more than one alternate Theme with Options you wish to change, repeat Steps 4-8 for each alternate Theme
108
+ 1. Deactivate the Theme Test Drive plugin
109
+ 1. Activate jonradio Multiple Themes
110
+ 1. Changes to the Options for the Current Theme can now be made normally, just as you would without either plugin
111
+ 1. Both the alternate and Current Themes should now display all Theme options properly when selected through the jonradio Multiple Themes plugin
112
+
113
+ = How do I change the Template for a specific Page or Post? =
114
+
115
+ For the Current Theme, nothing changes when using the jonradio Multiple Themes plugin. Select an alternate Template from the drop-down list in the Template field of the Page Attributes section of the Add New Page, Edit Page, Add New Post or Edit Post page of the Admin panels. Or the Template field in Quick Edit.
116
+
117
+ It is more difficult to change Templates for Pages or Posts defined with the jonradio Multiple Themes plugin to use Active Themes that are *not* the Current Theme. We hope to build this functionality into the jonradio Multiple Themes plugin in a future Version.
118
+
119
+ Use the Theme Test Drive plugin. The jonradio Multiple Themes plugin (i.e. - this plugin) must be Deactivated, and the Theme Test Drive plugin installed and activated, so that each Theme can be selected with the Theme Test Drive plugin, allowing the Theme's Template to be set for each Page or Post using that Theme "as if" it were the Current Theme.
120
+
121
+ 1. Deactivate jonradio Multiple Themes
122
+ 1. Install the Theme Test Drive plugin found at http://wordpress.org/extend/plugins/theme-test-drive/
123
+ 1. Activate the Theme Test Drive plugin
124
+ 1. Go to Appearance-Theme Test Drive
125
+ 1. In the Usage section, select an alternate Theme you will be using with jonradio Multiple Themes
126
+ 1. Push the Enable Theme Drive button at the bottom
127
+ 1. Go to the WordPress Admin panel's Page or Post menu (left sidebar)
128
+ 1. Make your changes to the Template field of each Page and/or Post that has been selected for this alternate Theme AND requires a non-default Template
129
+ 1. If you have more than one alternate Theme with Templates you wish to change, repeat Steps 4-8 for each alternate Theme
130
+ 1. Deactivate the Theme Test Drive plugin
131
+ 1. Activate jonradio Multiple Themes
132
+ 1. Changes to the Templates for Pages and Posts using the Current Theme can now be made normally, just as you would without either plugin
133
+ 1. Both the alternate and Current Themes should now display all Templates properly when selected through the jonradio Multiple Themes plugin
134
+
135
+ = How do I select a Theme for a Category of Posts? =
136
+
137
+ That functionality, to directly specify a Theme for a Category on the Settings page, is being investigated for a future version of the jonradio Multiple Themes plugin. But there is already a solution based on Permalinks:
138
+
139
+ 1. In the WordPress Admin panels, go to Settings-Permalinks
140
+ 1. Specify a Permalinks structure that begins with /%category%/
141
+ 1. Push the Save Changes button
142
+ 1. Go to Settings-Multiple Themes plugin
143
+ 1. In the Section "For An Individual Page, Post or other non-Admin page", select the Theme for the Category of Posts
144
+ 1. Enter the URL of the Categories page, e.g. - http://domain.com/news/
145
+ 1. Click the checkbox "Select here if URL is a Prefix"
146
+ 1. Push the Save Changes button
147
+
148
+ = How do I Edit a Theme? =
149
+
150
+ WordPress includes a built-in Theme Editor. Select Editor in the Admin panel's Appearance menu items on the left sidebar.
151
+
152
+ By default, the style.css file of the Current Theme is displayed. You can edit other Themes by selecting them in the "Select theme to edit" field and clicking the Select button.
153
+
154
+ Alternatively, you can edit any Theme on your own computer. If your computer runs Windows, NotePad++ and FileZilla run very well together, using FileZilla's View/Edit feature to provide a Theme Editor with syntax highlighting and other advanced features.
155
+
156
+ If one or more of the Active Themes have their own Theme Editor or other type of Theme Options panels, such as Elegant's epanel, please read the next FAQ.
157
+
158
+ = How do I use Elegant's epanel? =
159
+
160
+ Nothing changes for the Current Theme. epanel can be accessed just as it would be without the jonradio Multiple Themes plugin, simply by selecting the WordPress Admin panel's Appearance submenu item titled Theme Options preceded by the name of your Elegant Theme.
161
+
162
+ To make changes to other Active Themes that you will be specifying with the jonradio Multiple Themes plugin:
163
+
164
+ 1. Deactivate jonradio Multiple Themes
165
+ 1. Install the Theme Test Drive plugin found at http://wordpress.org/extend/plugins/theme-test-drive/
166
+ 1. Activate the Theme Test Drive plugin
167
+ 1. Go to Appearance-Theme Test Drive
168
+ 1. In the Usage section, select an alternate Theme you will be using with jonradio Multiple Themes
169
+ 1. Push the Enable Theme Drive button at the bottom
170
+ 1. Click on the Appearance menu item on the left sidebar of the WordPress Admin panel to refresh the submenu
171
+ 1. Click on the submenu item titled with your Elegant theme's name followed by "Theme Options"
172
+ 1. Elegant's epanel will now appear
173
+ 1. Make all the changes for this Theme, being sure to push the Save button
174
+ 1. If you have more than one alternate Theme with Options you wish to change, repeat Steps 4-10 for each alternate Theme
175
+ 1. Deactivate the Theme Test Drive plugin
176
+ 1. Activate jonradio Multiple Themes
177
+ 1. Changes to the Options for the Current Theme can now be made normally, just as you would without either plugin
178
+ 1. Both the alternate and Current Themes should now display all Theme options properly when selected through the jonradio Multiple Themes plugin
179
+
180
+ Thanks to Elegant for allowing us to test copies of any of their Themes provided by their customers.
181
+
182
+ = What happens when I change Permalinks? =
183
+
184
+ For entries you have created for individual Pages and Posts with the jonradio Multiple Themes plugin, you can subsequently change your Permalink structure or you can change the Permalink of a Page or Post, without having to change the plugin's entry. However, for other pages, such as Categories or Archives, you will have to delete your old entries and create new ones with the jonradio Multiple Themes plugin.
185
+
186
+ = I added a new entry but why doesn't it appear in the list of entries? =
187
+
188
+ If you add an entry that already exists, it merely replaces the previous entry.
189
+
190
+ = How can I change the Theme for an entry? =
191
+
192
+ Simply add the entry again, with the new Theme. It will replace the previous entry.
193
+
194
+ == Screenshots ==
195
+
196
+ 1. Plugin's Admin Page
197
+
198
+ == Changelog ==
199
+
200
+ = 4.5.1 =
201
+ * Remove %E2%80%8E suffix from URLs being entered
202
+
203
+ = 4.5 =
204
+ * Check with get_page_by_path() and get_posts( array( 'name' => $page_url ) ) if url_to_postid() fails to find URL input
205
+
206
+ = 4.4 =
207
+ * Rewrite Plugin's handling of its own version number to fix issues when new sites are activated in a Network and plugin is Network-Activated
208
+ * Prevent Fatal Error for Versions of WordPress before 3.4, and Deactivate Plugin instead, because plugin requires at least 3.4 to function
209
+ * Security: require "switch_themes" Capability rather than "manage_options" Capability to access plugin's Settings page
210
+
211
+ = 4.3 =
212
+ * Add SSL support so that visitors can view the WordPress site with https:// URLs and Site URL can be https://
213
+
214
+ = 4.2 =
215
+ * Add option to override WordPress Current Theme
216
+ * Security enhancements to eliminate direct execution of .php files
217
+
218
+ = 4.1.1 =
219
+ * Handle situations where readme.txt file in plugin's directory cannot be read or written
220
+
221
+ = 4.1 =
222
+ * Support for non-alphanumeric characters in URLs, e.g. - languages using characters not in the English alphabet
223
+ * Support for Live Search feature of KnowHow Theme
224
+ * Display errors, not settings, on plugin's Admin page for activated BuddyPress or Theme Test Drive plugins, or old versions of WordPress
225
+ * Add error checking/messages and diagnostic information to plugin's Admin page
226
+
227
+ = 4.0.2 =
228
+ * Prevent Warning and Notice by initializing global $wp
229
+
230
+ = 4.0.1 =
231
+ * Prevent Fatal Error by initializing global $wp_rewrite
232
+
233
+ = 4 =
234
+ * Discovered url_to_postid() function, to address situations where Slug differed from Permalink, such as Posts with Year/Month folders
235
+
236
+ = 3.3.1 =
237
+ * Fix White Screen of Death on a Page selected by plugin
238
+
239
+ = 3.3 =
240
+ * Support Child Themes and any other situation where stylesheet and template names are not the same
241
+
242
+ = 3.2 =
243
+ * Correct Problem with P2 Theme, and its logged on verification at wp-admin/admin-ajax.php?p2ajax=true&action=logged_in_out&_loggedin={nonce}
244
+ * Add "Settings Saved" message to Admin page
245
+ * Tested with WordPress Version 3.5 beta
246
+
247
+ = 3.1 =
248
+ * Add Support for Prefixes, where all URLs beginning with the specified characters ("Prefix") can be assigned to a specified Theme
249
+
250
+ = 3.0 =
251
+ * Add Support for Categories and Archives when no Permalinks exist (support already existed Categories and Archives with Permalinks)
252
+ * Resolve several minor bugs
253
+
254
+ = 2.9 =
255
+ * Rewrite much of the Settings page and Plugin Directory documentation
256
+ * Add Support for IIS which returns incorrect values in $_SERVER['REQUEST_URI']
257
+ * Make it easier to select the Theme for the Site Home by providing a new Settings field
258
+ * Remove ability to set Theme for Admin pages since no known Theme provides Admin templates, and because the previous implementation sometimes displayed the incorrect Current Theme in Admin; this feature may be re-added in a future release, and could even be used to change Settings of Themes that are not currently the Current Theme
259
+ * Add version upgrade detection to add, remove and update Settings fields
260
+ * Move Settings link on Plugins page from beginning to end of links
261
+
262
+ = 2.0 =
263
+ * Address pecularities of wp_make_link_relative() related to root-based WordPress sites using Permalinks
264
+
265
+ = 1.1 =
266
+ * Fix foreach failing on some systems, based on PHP warning level
267
+
268
+ = 1.0 =
269
+ * Make plugin conform to WordPress plugin repository standards.
270
+ * Beta testing completed.
271
+
272
+ == Upgrade Notice ==
273
+
274
+ = 4.5.1 =
275
+ Fix %E2%80%8E suffix problem on input URLs
276
+
277
+ = 4.5 =
278
+ Handle URL input for non-standard Pages and Posts
279
+
280
+ = 4.4 =
281
+ Fix errors when new Network site created or old WordPress version used, and correct Setting page Permissions to "switch_themes"
282
+
283
+ = 4.3 =
284
+ Add SSL support for sites with https:// URLs
285
+
286
+ = 4.2 =
287
+ Add "Select Theme for Everything" feature and improve security
288
+
289
+ = 4.1.1 =
290
+ Resolve issues with readme.txt permissions introduced in Version 4.1's compatibility checking
291
+
292
+ = 4.1 =
293
+ Support non-English alphabet in URLs and Live Search feature in KnowHow Theme
294
+
295
+ = 4.0.2 =
296
+ Fix "Warning: in_array() expects parameter 2 to be array, null given in domain.com/wp-includes/rewrite.php on line 364"
297
+
298
+ = 4.0.1 =
299
+ Fix "Fatal error: Call to a member function wp_rewrite_rules() on a non-object in domain.com/wp-includes/rewrite.php on line 294"
300
+
301
+ = 4 =
302
+ Fix Posts not working in some Permalink setups, most notably Year/Month
303
+
304
+ = 3.3.1 =
305
+ Fix White Screen of Death on a Page, Post or other element selected by plugin
306
+
307
+ = 3.3 =
308
+ Remove Restriction that Stylesheet Name must match Template Name, which it does not with Child Themes
309
+
310
+ = 3.2 =
311
+ Add Support for P2 Theme and provide "Settings Saved" message
312
+
313
+ = 3.1 =
314
+ Allow Prefix URLs to be used to specify where a Theme will be displayed
315
+
316
+ = 3.0 =
317
+ Improve support for Categories and Archives, and eliminate all known bugs.
318
+
319
+ = 2.9 =
320
+ Improve Settings fields, correct display of wrong Current Theme in Appearance-Themes Admin panel, and add IIS Support.
321
+
322
+ = 2.0 =
323
+ Selecting Individual Pages and Posts on a WordPress site installed in the root and using Permalinks now works correctly.
324
+
325
+ = 1.1 =
326
+ Eliminate possibility of foreach error message if PHP warning level is set at a high level
327
+
328
+ = 1.0 =
329
+ Beta version 0.9 had not been tested when installed from the WordPress Plugin Repository
uninstall.php ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ // Ensure call comes from WordPress, not a hacker or anyone else trying direct access.
3
+ if ( !defined( 'WP_UNINSTALL_PLUGIN' ) )
4
+ exit ();
5
+
6
+
7
+ /* Remove any tables, options, and such created by this Plugin */
8
+ if ( function_exists('is_multisite') && is_multisite() ) {
9
+ global $wpdb, $site_id;
10
+ $blogs = $wpdb->get_results( "SELECT blog_id FROM {$wpdb->blogs} WHERE site_id = $site_id" );
11
+ foreach ($blogs as $blog_obj) {
12
+ delete_blog_option( $blog_obj->blog_id, 'jr_mt_settings' );
13
+ delete_blog_option( $blog_obj->blog_id, 'jr_mt_internal_settings' );
14
+ }
15
+ } else {
16
+ delete_option( 'jr_mt_settings' );
17
+ delete_option( 'jr_mt_internal_settings' );
18
+ }
19
+
20
+ ?>