'', 'type' => '', 'banner' => '', 'campaign' => '', 'active_location' => '', ); } if ( function_exists( 'amp_wp_ads_manager_get_ad_location_data' ) ) : return amp_wp_ads_manager_get_ad_location_data( $ad_location_prefix ); endif; } } if ( ! function_exists( 'amp_wp_show_ad_location' ) ) { /** * Return data of Ad location by its ID prefix * * @param string $ad_location_prefix * * @param array $args * * @return array */ function amp_wp_show_ad_location( $ad_location_prefix = '', $args = array() ) { if ( ! is_amp_wp_ads_manager_plugin_active() ) { return; } if ( function_exists( 'amp_wp_ads_manager_get_ad_location_data' ) ) : $ad_data = amp_wp_ads_manager_get_ad_location_data( $ad_location_prefix ); if ( ! $ad_data['active_location'] ) { return; } endif; if ( function_exists( 'amp_wp_ads_manager_show_ad_location' ) ) : amp_wp_ads_manager_show_ad_location( $ad_location_prefix, $ad_data, $args ); endif; } }