Here is code to add output filtering to the dfads plugin
-
Hi,
Thanks for this plugin.
It is useful to be able to hook up a filter for all advertisement output.
It is easy for you to implement, simply add this line before the last line of the
output()
method of the DFADS class:$html = apply_filters('dfads_output', $html);
Now we will be able to hook up a filter for dfads output in our own functions:
function mycustom_dfads_output_filter($content) { $content = str_replace('dfad', 'mycustom', $content); return $content; } add_filter( 'dfads_output', 'mycustom_dfads_output_filter');
It would be nice if you could implement it, then I won’t need to manually keep adding it to the plugin all the time ??
Thanks,
Wernerm
- The topic ‘Here is code to add output filtering to the dfads plugin’ is closed to new replies.