-
Notifications
You must be signed in to change notification settings - Fork 85
jetpack_sync_comment_meta_whitelist
github-actions[bot] edited this page Oct 6, 2025
·
1 revision
/**
* Callback function for the 'jetpack_sync_comment_meta_whitelist' filter.
*
* @param array $array
* @return array The filtered value.
*/
function my_jetpack_sync_comment_meta_whitelist_callback( array $array ) {
// Your code here.
return $array;
}
add_filter( 'jetpack_sync_comment_meta_whitelist', 'my_jetpack_sync_comment_meta_whitelist_callback' );
-
array
$array
apply_filters( 'jetpack_sync_comment_meta_whitelist', array() )
apply_filters( 'jetpack_sync_comment_meta_whitelist', array() )
Follow @[email protected] for updates and news.