wp_pro_ads_banner_limit_categories

This filter allows developers to add categories other than post categories to the “limit by category” section of the plugin.

<?php
add_filter('wp_pro_ads_banner_limit_categories', 'your_function');
function your_function( $taxonomies ) {
    $atts = wp_parse_args(array('my_taxonomy'), $taxonomies);
 
    return $taxonomies;
}

Parameters

Param NameTypeDescription
$taxonomiesArraythe default taxonomies.

Return

Param NameTypeDescription
$taxonomiesArraythe adjusted taxonomies.