wp_pro_ads_adzone_linked_banners

This filter allows you to remove/adjust specific linked banners for an adzone before they get shown.

Usage

<?php
add_filter('wp_pro_ads_adzone_linked_banners', 'your_function');
function your_function( $linked_banner_ids ){
    // Do something...
 
    return $linked_banner_ids;
}

Parameters

Param NameTypeDescription
$linked_banner_idsArraythe default linked banner ids.

Return

Param NameTypeDescription
$linked_banner_idsArraythe adjusted linked banner ids.