-
Notifications
You must be signed in to change notification settings - Fork 0
microsub_post_to_jf2
github-actions[bot] edited this page Jan 2, 2026
·
1 revision
Filters the jf2 formatted entry for a post.
/**
* Filters the jf2 formatted entry for a post.
*
* @param array $jf2
* @param WP_Post $post
* @return array The filtered value.
*/
function my_microsub_post_to_jf2_callback( array $jf2, WP_Post $post ) {
// Your code here.
return $jf2;
}
add_filter( 'microsub_post_to_jf2', 'my_microsub_post_to_jf2_callback', 10, 2 );-
array$jf2The jf2 entry. -
WP_Post$postThe original post.
\apply_filters( 'microsub_post_to_jf2', $jf2, $post )