Skip to content

Instantly share code, notes, and snippets.

@wbcomdev
Last active May 9, 2022 13:19
Show Gist options
  • Select an option

  • Save wbcomdev/f9b6bbdaf9b7960decb6a5a7ba24a427 to your computer and use it in GitHub Desktop.

Select an option

Save wbcomdev/f9b6bbdaf9b7960decb6a5a7ba24a427 to your computer and use it in GitHub Desktop.
<?php
add_filter('bp_activity_reshare_post_type', 'function_name' );
function function_name( $post_type ) {
$post_type[] = 'custom post type slug';
return $post_type;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment