Version Description
Download this release
Release Info
| Developer | cbaldelomar |
| Plugin | |
| Version | 3.43 |
| Comparing to | |
| See all releases | |
Code changes from version 3.42 to 3.43
- README.md +4 -0
- public/class-register.php +1 -0
- public/class-vars.php +1 -1
- readme.txt +4 -0
- wc-shortcodes.php +1 -1
README.md
CHANGED
|
@@ -106,6 +106,10 @@ See our help article on [how to manually upload a plugin](http://knowledgebase.a
|
|
| 106 |
|
| 107 |
## Changelog ##
|
| 108 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 109 |
### Version 3.42 ###
|
| 110 |
|
| 111 |
* fixed bug with excert wrapper not being applied
|
| 106 |
|
| 107 |
## Changelog ##
|
| 108 |
|
| 109 |
+
### Version 3.43 ###
|
| 110 |
+
|
| 111 |
+
* Added plugin support for Advanced Custom Fields
|
| 112 |
+
|
| 113 |
### Version 3.42 ###
|
| 114 |
|
| 115 |
* fixed bug with excert wrapper not being applied
|
public/class-register.php
CHANGED
|
@@ -16,6 +16,7 @@ class WPC_Shortcodes_Register extends WPC_Shortcodes_Vars {
|
|
| 16 |
private function __construct() {
|
| 17 |
add_filter( 'the_content', array( &$this, 'pre_process' ), 7 );
|
| 18 |
add_filter( 'wc_shortcodes_the_content', array( &$this, 'pre_process' ), 7 );
|
|
|
|
| 19 |
add_action( 'wc_shortcodes_add_preprocess', array( &$this, 'add_preprocess' ) );
|
| 20 |
add_shortcode( 'wc_html', array( &$this, 'displayhtml' ) );
|
| 21 |
add_shortcode( 'wc_pre' , array( &$this, 'displaypre' ) );
|
| 16 |
private function __construct() {
|
| 17 |
add_filter( 'the_content', array( &$this, 'pre_process' ), 7 );
|
| 18 |
add_filter( 'wc_shortcodes_the_content', array( &$this, 'pre_process' ), 7 );
|
| 19 |
+
add_filter( 'acf_the_content', array( &$this, 'pre_process' ), 7 );
|
| 20 |
add_action( 'wc_shortcodes_add_preprocess', array( &$this, 'add_preprocess' ) );
|
| 21 |
add_shortcode( 'wc_html', array( &$this, 'displayhtml' ) );
|
| 22 |
add_shortcode( 'wc_pre' , array( &$this, 'displaypre' ) );
|
public/class-vars.php
CHANGED
|
@@ -8,7 +8,7 @@ class WPC_Shortcodes_Vars {
|
|
| 8 |
*
|
| 9 |
* @var string
|
| 10 |
*/
|
| 11 |
-
const VERSION = '3.
|
| 12 |
const DB_VERSION = '1.0';
|
| 13 |
|
| 14 |
/**
|
| 8 |
*
|
| 9 |
* @var string
|
| 10 |
*/
|
| 11 |
+
const VERSION = '3.43';
|
| 12 |
const DB_VERSION = '1.0';
|
| 13 |
|
| 14 |
/**
|
readme.txt
CHANGED
|
@@ -113,6 +113,10 @@ See our help article on [how to manually upload a plugin](http://knowledgebase.a
|
|
| 113 |
|
| 114 |
== Changelog ==
|
| 115 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 116 |
= Version 3.42 =
|
| 117 |
|
| 118 |
* fixed bug with excert wrapper not being applied
|
| 113 |
|
| 114 |
== Changelog ==
|
| 115 |
|
| 116 |
+
= Version 3.43 =
|
| 117 |
+
|
| 118 |
+
* Added plugin support for Advanced Custom Fields
|
| 119 |
+
|
| 120 |
= Version 3.42 =
|
| 121 |
|
| 122 |
* fixed bug with excert wrapper not being applied
|
wc-shortcodes.php
CHANGED
|
@@ -5,7 +5,7 @@ Plugin URI: http://angiemakes.com/feminine-wordpress-blog-themes-women/
|
|
| 5 |
Description: A plugin that adds a useful family of shortcodes to your WordPress theme.
|
| 6 |
Author: Chris Baldelomar
|
| 7 |
Author URI: http://angiemakes.com/
|
| 8 |
-
Version: 3.
|
| 9 |
License: GPLv2 or later
|
| 10 |
*/
|
| 11 |
|
| 5 |
Description: A plugin that adds a useful family of shortcodes to your WordPress theme.
|
| 6 |
Author: Chris Baldelomar
|
| 7 |
Author URI: http://angiemakes.com/
|
| 8 |
+
Version: 3.43
|
| 9 |
License: GPLv2 or later
|
| 10 |
*/
|
| 11 |
|
