Version Description
- Added Per Post Body Class for Single Page View
Download this release
Release Info
Developer | wpweaver |
Plugin | Weaver Xtreme Theme Support |
Version | 3.1.11 |
Comparing to | |
See all releases |
Code changes from version 3.1.9 to 3.1.11
- includes/wvrx-ts-admin-page-posts.php +5 -0
- readme.txt +9 -3
- weaverx-ts.php +4 -6
includes/wvrx-ts-admin-page-posts.php
CHANGED
@@ -1027,6 +1027,11 @@ Include the {}\'s. Don\'t use class names if rules apply to whole post, but do i
|
|
1027 |
value="<?php echo esc_textarea(get_post_meta($post->ID, "_pp_post_class", true)); ?>" />
|
1028 |
<?php _e('Add Classes to this post','weaver-xtreme-plus' /*adm*/); ?>
|
1029 |
<br />
|
|
|
|
|
|
|
|
|
|
|
1030 |
<?php
|
1031 |
// Weaver X Plus options for making horizontal bar layouts
|
1032 |
echo '<small>';
|
1027 |
value="<?php echo esc_textarea(get_post_meta($post->ID, "_pp_post_class", true)); ?>" />
|
1028 |
<?php _e('Add Classes to this post','weaver-xtreme-plus' /*adm*/); ?>
|
1029 |
<br />
|
1030 |
+
<input type="text" size="24" id="bodyclass" name="_pp_bodyclass"
|
1031 |
+
value="<?php echo esc_textarea(get_post_meta($post->ID, "_pp_bodyclass", true)); ?>" />
|
1032 |
+
|
1033 |
+
<?php _e('<em>Per Post body Class</em> - CSS class name to add to HTML <body> block when this post is displayed on Single Page.','weaverx-theme-support' /*adm*/); ?>
|
1034 |
+
<br />
|
1035 |
<?php
|
1036 |
// Weaver X Plus options for making horizontal bar layouts
|
1037 |
echo '<small>';
|
readme.txt
CHANGED
@@ -9,8 +9,8 @@ License: GPLv2 or later
|
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
Text Domain: weaverx-theme-support
|
11 |
Requires at least: 4.5
|
12 |
-
Tested up to: 4.
|
13 |
-
Stable tag: 3.1.
|
14 |
|
15 |
A useful shortcode and widget collection for Weaver Xtreme
|
16 |
|
@@ -75,7 +75,13 @@ Support for this plugin can best be found at our forum - http://forum.weaverthem
|
|
75 |
See ChangeLog for changes to this version.
|
76 |
|
77 |
== ChangeLog ==
|
78 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
* Fix: Recognize https: for vimeo link
|
80 |
* Tweak: Added 'end=nnn' option for [ you_tube ] shortcode
|
81 |
* Tweak: minor option wording change
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
Text Domain: weaverx-theme-support
|
11 |
Requires at least: 4.5
|
12 |
+
Tested up to: 4.9
|
13 |
+
Stable tag: 3.1.11
|
14 |
|
15 |
A useful shortcode and widget collection for Weaver Xtreme
|
16 |
|
75 |
See ChangeLog for changes to this version.
|
76 |
|
77 |
== ChangeLog ==
|
78 |
+
= 3.1.11 =
|
79 |
+
* Added Per Post Body Class for Single Page View
|
80 |
+
|
81 |
+
= 3.1.10 =
|
82 |
+
* Update: WP 4.9 compatibility
|
83 |
+
|
84 |
+
= 3.1.9 =
|
85 |
* Fix: Recognize https: for vimeo link
|
86 |
* Tweak: Added 'end=nnn' option for [ you_tube ] shortcode
|
87 |
* Tweak: minor option wording change
|
weaverx-ts.php
CHANGED
@@ -5,12 +5,12 @@ Plugin URI: http://weavertheme.com/plugins
|
|
5 |
Description: Weaver Xtreme Theme Support - a package of useful shortcodes and widgets that integrates closely with the Weaver Xtreme and Weaver Foundation themes.
|
6 |
Author: wpweaver
|
7 |
Author URI: http://weavertheme.com/about/
|
8 |
-
Version: 3.1.
|
9 |
License: GPL V3
|
10 |
|
11 |
Weaver Xtreme Theme Support
|
12 |
|
13 |
-
Copyright (C) 2014-
|
14 |
|
15 |
This program is free software: you can redistribute it and/or modify
|
16 |
it under the terms of the GNU General Public License as published by
|
@@ -21,7 +21,7 @@ This program is distributed in the hope that it will be useful,
|
|
21 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
22 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
23 |
GNU General Public License for more details.
|
24 |
-
|
25 |
You should have received a copy of the GNU General Public License
|
26 |
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
27 |
*/
|
@@ -43,7 +43,7 @@ function wvrx_is_user_logged_in() {
|
|
43 |
|
44 |
if ( strpos( $theme, '/weaver-xtreme') !== false ) { // only load if Weaver Xtreme is the theme
|
45 |
|
46 |
-
define ('WVRX_TS_VERSION','3.1.
|
47 |
define ('WVRX_TS_MINIFY','.min'); // '' for dev, '.min' for production
|
48 |
define ('WVRX_TS_APPEARANCE_PAGE', false );
|
49 |
|
@@ -248,6 +248,4 @@ function wvrx_check_jetpack() {
|
|
248 |
wvrx_ts_alert(__('**** IMPORTANT: The Jetpack Mobile theme is active. ****\nIt is NOT compatible with Weaver Xtreme, and will break the theme. Please deactivate it from the Jetpack control panel.\n\n**** This message will continue to be displayed until you deactivate the Jetpack Mobile Theme from the Jetpack settings panel. ****', 'weaverx-theme-support'));
|
249 |
}
|
250 |
}
|
251 |
-
|
252 |
-
|
253 |
?>
|
5 |
Description: Weaver Xtreme Theme Support - a package of useful shortcodes and widgets that integrates closely with the Weaver Xtreme and Weaver Foundation themes.
|
6 |
Author: wpweaver
|
7 |
Author URI: http://weavertheme.com/about/
|
8 |
+
Version: 3.1.11
|
9 |
License: GPL V3
|
10 |
|
11 |
Weaver Xtreme Theme Support
|
12 |
|
13 |
+
Copyright (C) 2014-2018 Bruce E. Wampler - weaver@weavertheme.com
|
14 |
|
15 |
This program is free software: you can redistribute it and/or modify
|
16 |
it under the terms of the GNU General Public License as published by
|
21 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
22 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
23 |
GNU General Public License for more details.
|
24 |
+
1`
|
25 |
You should have received a copy of the GNU General Public License
|
26 |
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
27 |
*/
|
43 |
|
44 |
if ( strpos( $theme, '/weaver-xtreme') !== false ) { // only load if Weaver Xtreme is the theme
|
45 |
|
46 |
+
define ('WVRX_TS_VERSION','3.1.11');
|
47 |
define ('WVRX_TS_MINIFY','.min'); // '' for dev, '.min' for production
|
48 |
define ('WVRX_TS_APPEARANCE_PAGE', false );
|
49 |
|
248 |
wvrx_ts_alert(__('**** IMPORTANT: The Jetpack Mobile theme is active. ****\nIt is NOT compatible with Weaver Xtreme, and will break the theme. Please deactivate it from the Jetpack control panel.\n\n**** This message will continue to be displayed until you deactivate the Jetpack Mobile Theme from the Jetpack settings panel. ****', 'weaverx-theme-support'));
|
249 |
}
|
250 |
}
|
|
|
|
|
251 |
?>
|