mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-05 12:32:23 +08:00
8 lines
269 B
Text
8 lines
269 B
Text
function jetpackme_exclude_jetpack_related_from_products( $options ) {
|
|
if ( is_product() ) {
|
|
$options['enabled'] = false;
|
|
}
|
|
|
|
return $options;
|
|
}
|
|
add_filter( 'jetpack_relatedposts_filter_options', 'jetpackme_exclude_jetpack_related_from_products' );
|