filter

wordads_inpost_disable

Allow third-party tools to disable the display of in post ads.

Parameters

true
bool

Should the in post unit be disabled. Default to false.

Changelog

How to use this hook

See “How to use actions and filters to customize Jetpack”.

Notes

You can use this filter to disable Ads appearing below the post content in specific situations. In the example below, we’ll disable all Post ads:
/**
 * Disable Ads appearing below the post content.
 */
add_filter( 'wordads_inpost_disable', '__return_true' );
  This example disables all post ads for a specific post:
/**
 * Disable Ads appearing below the post content in a specific post.
 */
add_filter( 'wordads_inpost_disable', 'htdat_disable_one_post' );

function htdat_disable_one_post( $bool ) {  
  // Replace 123 with your own value
  // See allowed values in https://developer.wordpress.org/reference/functions/is_single/
  return is_single( 123 ) ? true : $bool; 
}