Changeset 2024389
- Timestamp:
- 02/04/2019 06:04:14 AM (7 years ago)
- Location:
- wp-affiliate-disclosure/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (1 diff)
-
builder/builder/controller.php (modified) (2 diffs)
-
functions.php (modified) (3 diffs)
-
package.json (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-affiliate-disclosure/trunk/README.txt
r2023608 r2024389 5 5 Requires PHP: 5.6 6 6 Tested up to: 5.0.3 7 Stable tag: 1.1. 27 Stable tag: 1.1.3 8 8 Tags: affiliate, disclosure, affiliate disclosure, affiliate disclosure statement, disclosure statement, FTC-compliant disclosure, affiliate disclaimer, affiliate disclaimer statement, FTC, FTC disclosure statement 9 9 License: GPLv2 or later -
wp-affiliate-disclosure/trunk/builder/builder/controller.php
r2023608 r2024389 113 113 */ 114 114 public function add_statement_before_post( $content ) { 115 if ( ! ( is_home() || is_archive() ) ) {115 if ( ! ( is_home() || is_archive() || is_admin() ) ) { 116 116 $component = new WPADC_Disclosure_Statement(); 117 117 $statement = $component->render( 'before-content' ); … … 127 127 */ 128 128 public function add_statement_after_post( $content ) { 129 if ( ! ( is_home() || is_archive() ) ) {129 if ( ! ( is_home() || is_archive() || is_admin() ) ) { 130 130 $component = new WPADC_Disclosure_Statement(); 131 131 $statement = $component->render( 'after-content' ); -
wp-affiliate-disclosure/trunk/functions.php
r2023608 r2024389 1 1 <?php /* 2 2 Plugin Name: WP Affiliate Disclosure 3 Version: 1.1. 23 Version: 1.1.3 4 4 Plugin URI: https://www.mojofywp.com/wp-affiliate-disclosure 5 5 Description: Automatically add a customizable, FTC-compliant disclosure statement across your WordPress website based on the rule(s) you define. … … 10 10 Requires at least: 4.9.8 11 11 Tested up to: 5.0.3 12 Stable tag: 1.1. 212 Stable tag: 1.1.3 13 13 14 14 Text Domain: wp-affiliate-disclosure … … 53 53 * Plugin version 54 54 **/ 55 if(!defined('WPADC_VERSION')) define( 'WPADC_VERSION', '1.1. 2' );55 if(!defined('WPADC_VERSION')) define( 'WPADC_VERSION', '1.1.3' ); 56 56 57 57 /** -
wp-affiliate-disclosure/trunk/package.json
r2023234 r2024389 1 1 { 2 2 "name": "wpaffiliatedisclosure", 3 "version": "1.1. 1",3 "version": "1.1.3", 4 4 "scripts": { 5 5 "start": "cross-env webpack --watch",
Note: See TracChangeset
for help on using the changeset viewer.