You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.txt
+71-68Lines changed: 71 additions & 68 deletions
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,76 @@ Since the plugin is in its early stages, there are a couple additional configura
31
31
1. Implement filters to make the plugin work with your provider
32
32
1. Configure your ad codes in the WordPress admin ( Tools -> Ad Code Manager )
33
33
34
+
== Upgrade Notice ==
35
+
36
+
= 0.4 =
37
+
Easier, streamlined configuration for Doubleclick for Publishers Async and Google AdSense.
38
+
39
+
= 0.3 =
40
+
Conditional operator logic can be set on an ad code by ad code basis. Couple of bug fixes.
41
+
42
+
= 0.2.3 =
43
+
The filter acm_provider_columns is removed in favor of acm_ad_code_args (see acm_ad_code_args )
44
+
45
+
= 0.2.2 =
46
+
Incorporated a new provider for Google AdSense and added bulk delete action for the WP List Table.
47
+
48
+
= 0.2.1 =
49
+
Flush the cache when adding or deleting ad codes, and set priority of 10 when a priority doesn't exist for an ad code.
50
+
51
+
== Changelog ==
52
+
53
+
= 0.4 (???? ??, 2013) =
54
+
* Streamlined configuration for Doubleclick for Publishers Async and Google AdSense
55
+
* Faster, cleaner JavaScript thanks to [Jeremy Felt](https://github.com/jeremyfelt) and [Carl Danley](https://github.com/carldanley)
56
+
* New filter 'acm_output_html_after_tokens_processed' for rare cases where you might want to filter html after the tokens are processed
57
+
58
+
= 0.3 (October 25, 2012) =
59
+
* Conditional operator logic can be set on an ad code by ad code basis. Thanks [jtsternberg](https://github.com/jtsternberg) for the pull request!
60
+
* Bug fix: If an ad tag doesn't need a URL, ignore the whitelist check
61
+
* Bug fix: Make sure that all providers list tables call parent::get_columns to avoid conflicts with filters.
62
+
* Coding standards cleanup
63
+
64
+
= 0.2.3 (June 25,2012) =
65
+
66
+
* Allow columns to be optional when creating and editing ad codes, introduced new filter acm_ad_code_args
67
+
* Remove acm_provider_columns filter
68
+
69
+
= 0.2.2 (June 5, 2012) =
70
+
* New Google Ad Sense provider courtesy of [Erick Hitter](http://www.ethitter.com/)
71
+
* Bulk delete action added for the WP List Table of ad codes. Delete more ad codes in one go
72
+
* New 'acm_register_provider_slug' for registering a provider that's included outside the plugin (e.g. a theme)
73
+
* Bug fix: Instantiate the WP List Table on the view, instead of on admin_init, to reduce conflicts with other list tables
74
+
75
+
= 0.2.1 (May 14, 2012) =
76
+
* Flush the cache whenever an ad code is created or deleted so you don't have to wait for a timeout with persistent cache
77
+
* Bug fix: Default to priority 10 when querying for ad codes if there is no priority set
78
+
79
+
= 0.2 (May 7, 2012) =
80
+
* UI reworked from the ground up to look and work much more like the WordPress admin (using WP List Table)
81
+
* Abstracted ad network logic, so users can integrate other ad networks. Pull requests to add support to the plugin are always welcome
82
+
* Added in-plugin contextual help
83
+
* Implemented priority for ad code (allows to workaround ad code conflicts if any)
84
+
* Implemented the [acm-tag] shortcode
85
+
* Implemented ACM Widget. Thanks to [Justin Sternburg](https://github.com/jtsternberg) at WebDevStudios for the contribution
86
+
* Initial loading of the ad codes is now cached using object cache
87
+
* Bug fix: Enable using ad codes with empty filters using a filter
88
+
* Bug fix: Setting the logical operator from OR to AND did not seem to result in the expected behaviour for displaying ads
89
+
* Bug fix: Remove logical operator check when a conditional for an ad code is empty
90
+
91
+
= 0.1.3 (February 13, 2012) =
92
+
* UI cleanup for the admin, including styling and information on applying conditionals
93
+
94
+
= 0.1.2 (February 9, 2012) =
95
+
* Readme with full description and examples
96
+
* Bug fix: Save the proper value when editing actions
97
+
98
+
= 0.1.1 =
99
+
* Bug fix release
100
+
101
+
= 0.1 =
102
+
* Initial release
103
+
34
104
== Configuration Filters ==
35
105
36
106
There are some filters which allow you to easily customize the output of the plugin. You should place these filters in your theme's functions.php file or in another appropriate place.
@@ -294,71 +364,4 @@ Example usage:
294
364
1. Adding an ad code with a site name, zone, and multiple conditionals.
295
365
1. Access the Help menu in the upper right for configuration assistance.
296
366
1. Edit existing ad codes inline through the admin interface.
297
-
1. Example of ad tag in use in a theme header template.
298
-
299
-
== Upgrade Notice ==
300
-
301
-
= 0.3 =
302
-
Conditional operator logic can be set on an ad code by ad code basis. Couple of bug fixes.
303
-
304
-
= 0.2.3 =
305
-
The filter acm_provider_columns is removed in favor of acm_ad_code_args (see acm_ad_code_args )
306
-
307
-
= 0.2.2 =
308
-
Incorporated a new provider for Google AdSense and added bulk delete action for the WP List Table.
309
-
310
-
= 0.2.1 =
311
-
Flush the cache when adding or deleting ad codes, and set priority of 10 when a priority doesn't exist for an ad code.
312
-
313
-
== Changelog ==
314
-
315
-
= 0.4 (???? ??, 2013) =
316
-
* Streamlined configuration for Doubleclick for Publishers Async and Google AdSense
317
-
* Faster, cleaner JavaScript thanks to [Jeremy Felt](https://github.com/jeremyfelt) and [Carl Danley](https://github.com/carldanley)
318
-
* New filter 'acm_output_html_after_tokens_processed' for rare cases where you might want to filter html after the tokens are processed
319
-
320
-
= 0.3 (October 25, 2012) =
321
-
* Conditional operator logic can be set on an ad code by ad code basis. Thanks [jtsternberg](https://github.com/jtsternberg) for the pull request!
322
-
* Bug fix: If an ad tag doesn't need a URL, ignore the whitelist check
323
-
* Bug fix: Make sure that all providers list tables call parent::get_columns to avoid conflicts with filters.
324
-
* Coding standards cleanup
325
-
326
-
= 0.2.3 (June 25,2012) =
327
-
328
-
* Allow columns to be optional when creating and editing ad codes, introduced new filter acm_ad_code_args
329
-
* Remove acm_provider_columns filter
330
-
331
-
= 0.2.2 (June 5, 2012) =
332
-
* New Google Ad Sense provider courtesy of [Erick Hitter](http://www.ethitter.com/)
333
-
* Bulk delete action added for the WP List Table of ad codes. Delete more ad codes in one go
334
-
* New 'acm_register_provider_slug' for registering a provider that's included outside the plugin (e.g. a theme)
335
-
* Bug fix: Instantiate the WP List Table on the view, instead of on admin_init, to reduce conflicts with other list tables
336
-
337
-
= 0.2.1 (May 14, 2012) =
338
-
* Flush the cache whenever an ad code is created or deleted so you don't have to wait for a timeout with persistent cache
339
-
* Bug fix: Default to priority 10 when querying for ad codes if there is no priority set
340
-
341
-
= 0.2 (May 7, 2012) =
342
-
* UI reworked from the ground up to look and work much more like the WordPress admin (using WP List Table)
343
-
* Abstracted ad network logic, so users can integrate other ad networks. Pull requests to add support to the plugin are always welcome
344
-
* Added in-plugin contextual help
345
-
* Implemented priority for ad code (allows to workaround ad code conflicts if any)
346
-
* Implemented the [acm-tag] shortcode
347
-
* Implemented ACM Widget. Thanks to [Justin Sternburg](https://github.com/jtsternberg) at WebDevStudios for the contribution
348
-
* Initial loading of the ad codes is now cached using object cache
349
-
* Bug fix: Enable using ad codes with empty filters using a filter
350
-
* Bug fix: Setting the logical operator from OR to AND did not seem to result in the expected behaviour for displaying ads
351
-
* Bug fix: Remove logical operator check when a conditional for an ad code is empty
352
-
353
-
= 0.1.3 (February 13, 2012) =
354
-
* UI cleanup for the admin, including styling and information on applying conditionals
355
-
356
-
= 0.1.2 (February 9, 2012) =
357
-
* Readme with full description and examples
358
-
* Bug fix: Save the proper value when editing actions
359
-
360
-
= 0.1.1 =
361
-
* Bug fix release
362
-
363
-
= 0.1 =
364
-
* Initial release
367
+
1. Example of ad tag in use in a theme header template.
0 commit comments