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
**Tags:** advertising, ad codes, ads, adsense, dfp, doubleclick for publishers
4
+
**Requires at least:** 3.1
5
+
**Tested up to:**4.3
6
+
**Stable tag:** 0.5
7
7
8
8
Manage your ad codes through the WordPress admin in a safe and easy way.
9
9
@@ -13,7 +13,7 @@ Ad Code Manager gives non-developers an interface in the WordPress admin for con
13
13
14
14
Some code-level configuration may be necessary to setup Ad Code Manager. Ad tags must be added (via `do_action()`) to your theme's template files where you'd like ads to appear. Alternatively, you can incorporate ad tags into your website with our widget and our shortcode. [Check out the configuration guide](http://vip.wordpress.com/documentation/configure-ad-code-manager-to-manage-the-advertisements-on-your-site/) for the full details.
15
15
16
-
A common set of parameters must also be defined for your ad provider. This includes the tag IDs used by your template, the default URL for your ad provider, and the default HTML surrounding that URL. Ad Code Manager comes with support for Google Doubleclick For Publishers (and Async), OpenX, and Google AdSense. All of the logic is abstracted, however, so configuring a different provider is relatively easy. Check `providers/doubleclick-for-publishers.php` for an idea of how to extend ACM to suit your needs.
16
+
A common set of parameters must also be defined for your ad provider. This includes the tag IDs used by your template, the default URL for your ad provider, and the default HTML surrounding that URL. Ad Code Manager comes with support for Google Doubleclick For Publishers (and Async), and Google AdSense. All of the logic is abstracted, however, so configuring a different provider is relatively easy. Check `providers/doubleclick-for-publishers.php` for an idea of how to extend ACM to suit your needs.
17
17
18
18
Once this configuration is in place, the Ad Code Manager admin interface will allow you to add new ad codes, modify the parameters for your script URL, and define conditionals to determine when the ad code appears. Conditionals are core WordPress functions like is_page(), is_category(), or your own custom functions that evaluate certain expression and then return true or false.
19
19
@@ -49,6 +49,9 @@ Since the plugin is in its early stages, there are a couple additional configura
49
49
50
50
## Upgrade Notice ##
51
51
52
+
### 0.5 ###
53
+
DFP Async provider now supports multiple sizes. [Check out this snippet to see implementation](http://pastie.org/10422227)
54
+
52
55
### 0.4 ###
53
56
Easier, streamlined configuration for Doubleclick for Publishers Async and Google AdSense.
54
57
@@ -66,10 +69,13 @@ Flush the cache when adding or deleting ad codes, and set priority of 10 when a
66
69
67
70
## Changelog ##
68
71
69
-
### 0.4.3 (??? ?? ????) ###
72
+
73
+
### 0.5 (Sep 15, 2015) ###
74
+
* Added support for flex sized DFP Async ads (see upgrade notice)
70
75
* Added robots.txt entries for provider's crawlers
71
76
* Bug fix: Prevent global `$post` polution if ad code is getting rendered inside a loop
72
77
* New Italian translation courtesy of [sniperwolf](https://github.com/sniperwolf)
78
+
* Using PHP5 constructs when initializing the widget
73
79
74
80
### 0.4.1 (Apr. 27, 2013) ###
75
81
* Disabled rendering of ads on preview to avoid crawling errors. Thanks [Paul Gibbs](https://github.com/paulgibbs)
@@ -135,7 +141,7 @@ There are some filters which allow you to easily customize the output of the plu
135
141
### acm_ad_tag_ids ###
136
142
137
143
Ad tag ids are used as a parameter when adding tags to your theme (e.g. do_action( 'acm_tag', 'my_top_leaderboard' )). The `url_vars` defined as part of each tag here will also be used to replace tokens in your default URL.
138
-
144
+
139
145
Arguments:
140
146
* array $tag_ids array of default tag ids
141
147
@@ -145,7 +151,7 @@ Example usage: Add a new ad tag called 'my_top_leaderboard'
@@ -176,7 +182,7 @@ function my_acm_default_url( $url ) {
176
182
177
183
### acm_output_html ###
178
184
179
-
The HTML outputted by the `do_action( 'acm_tag', 'ad_tag_id' );` call in your theme. Support multiple ad formats ( e.g. Javascript ad tags, or simple HTML tags ) by adjusting the HTML rendered for a given ad tag.
185
+
The HTML outputted by the `do_action( 'acm_tag', 'ad_tag_id' );` call in your theme. Support multiple ad formats ( e.g. Javascript ad tags, or simple HTML tags ) by adjusting the HTML rendered for a given ad tag.
180
186
181
187
The `%url%` token used in this HTML will be filled in with the URL defined with `acm_default_url`.
Tags: advertising, ad codes, ads, adsense, dfp, doubleclick for publishers
4
4
Requires at least: 3.1
5
-
Tested up to: 3.6-beta3
6
-
Stable tag: 0.4.1
5
+
Tested up to: 4.3
6
+
Stable tag: 0.5
7
7
8
8
Manage your ad codes through the WordPress admin in a safe and easy way.
9
9
@@ -13,7 +13,7 @@ Ad Code Manager gives non-developers an interface in the WordPress admin for con
13
13
14
14
Some code-level configuration may be necessary to setup Ad Code Manager. Ad tags must be added (via `do_action()`) to your theme's template files where you'd like ads to appear. Alternatively, you can incorporate ad tags into your website with our widget and our shortcode. [Check out the configuration guide](http://vip.wordpress.com/documentation/configure-ad-code-manager-to-manage-the-advertisements-on-your-site/) for the full details.
15
15
16
-
A common set of parameters must also be defined for your ad provider. This includes the tag IDs used by your template, the default URL for your ad provider, and the default HTML surrounding that URL. Ad Code Manager comes with support for Google Doubleclick For Publishers (and Async), OpenX, and Google AdSense. All of the logic is abstracted, however, so configuring a different provider is relatively easy. Check `providers/doubleclick-for-publishers.php` for an idea of how to extend ACM to suit your needs.
16
+
A common set of parameters must also be defined for your ad provider. This includes the tag IDs used by your template, the default URL for your ad provider, and the default HTML surrounding that URL. Ad Code Manager comes with support for Google Doubleclick For Publishers (and Async), and Google AdSense. All of the logic is abstracted, however, so configuring a different provider is relatively easy. Check `providers/doubleclick-for-publishers.php` for an idea of how to extend ACM to suit your needs.
17
17
18
18
Once this configuration is in place, the Ad Code Manager admin interface will allow you to add new ad codes, modify the parameters for your script URL, and define conditionals to determine when the ad code appears. Conditionals are core WordPress functions like is_page(), is_category(), or your own custom functions that evaluate certain expression and then return true or false.
19
19
@@ -39,6 +39,9 @@ Since the plugin is in its early stages, there are a couple additional configura
39
39
40
40
== Upgrade Notice ==
41
41
42
+
= 0.5 =
43
+
DFP Async provider now supports multiple sizes. [Check out this snippet to see implementation](http://pastie.org/10422227)
44
+
42
45
= 0.4 =
43
46
Easier, streamlined configuration for Doubleclick for Publishers Async and Google AdSense.
44
47
@@ -56,10 +59,12 @@ Flush the cache when adding or deleting ad codes, and set priority of 10 when a
56
59
57
60
== Changelog ==
58
61
59
-
= 0.4.3 (??? ?? ????) =
62
+
= 0.5 (Sep 15, 2015) =
63
+
* Added support for flex sized DFP Async ads (see upgrade notice)
60
64
* Added robots.txt entries for provider's crawlers
61
65
* Bug fix: Prevent global `$post` polution if ad code is getting rendered inside a loop
62
66
* New Italian translation courtesy of [sniperwolf](https://github.com/sniperwolf)
67
+
* Using PHP5 constructs when initializing the widget
63
68
64
69
= 0.4.1 (Apr. 27, 2013) =
65
70
* Disabled rendering of ads on preview to avoid crawling errors. Thanks [Paul Gibbs](https://github.com/paulgibbs)
@@ -125,7 +130,7 @@ There are some filters which allow you to easily customize the output of the plu
125
130
= acm_ad_tag_ids =
126
131
127
132
Ad tag ids are used as a parameter when adding tags to your theme (e.g. do_action( 'acm_tag', 'my_top_leaderboard' )). The `url_vars` defined as part of each tag here will also be used to replace tokens in your default URL.
128
-
133
+
129
134
Arguments:
130
135
* array $tag_ids array of default tag ids
131
136
@@ -134,7 +139,7 @@ Example usage: Add a new ad tag called 'my_top_leaderboard'
@@ -162,7 +167,7 @@ Example usage: Set your default ad code URL
162
167
163
168
= acm_output_html =
164
169
165
-
The HTML outputted by the `do_action( 'acm_tag', 'ad_tag_id' );` call in your theme. Support multiple ad formats ( e.g. Javascript ad tags, or simple HTML tags ) by adjusting the HTML rendered for a given ad tag.
170
+
The HTML outputted by the `do_action( 'acm_tag', 'ad_tag_id' );` call in your theme. Support multiple ad formats ( e.g. Javascript ad tags, or simple HTML tags ) by adjusting the HTML rendered for a given ad tag.
166
171
167
172
The `%url%` token used in this HTML will be filled in with the URL defined with `acm_default_url`.
0 commit comments