We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
$jf2
WP_Post
$post
\apply_filters( 'microsub_post_to_jf2', $jf2, $post )
← All Hooks