wp_pro_ads_adzone_html

This filter allows developers to completely adjust the adzone html.

<?php
add_filter('wp_pro_ads_adzone_html', 'your_function');
function your_function( $data ) {

    return $data;
}

Parameters

$data (array) (adzone_id (int)|options (array)|html (string))

Param NameTypeDescription
adzone_idINTthe adzone id.
optionsArraythe adzone data array.
htmlStringthe default html. This can be replaced with your own html.

Return

Param NameTypeDescription
$dataArrayOnly the html string is required to be returned.