wp_pro_ads_show_adzone

Whether or not the adzone should be shown.

<?php
add_filter('wp_pro_ads_show_adzone', 'your_function', 10, 2);
function your_function($show, $adzone_id){
    
    return $show;
}

Parameters

Param NameTypeDescription
$showINTthe current value.
$adzone_idINTthe adzone ID value.

Return

Param NameTypeDescription
$showINT (required)the adjusted value.