Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- *
- * Filter the post args before sending to wp_insert_post()
- *
- * @link https://developer.wordpress.org/reference/functions/wp_insert_post/
- *
- */
- add_filter( 'streamtube/core/embed/postarr', function( $post_args, $source, $oembed_data ){
- return $post_args;
- }, 10, 3 );
- /**
- *
- * Fires after post added
- *
- * @param object WP_Post $imported_post
- *
- */
- add_action( 'streamtube/core/embed/imported', function( $imported_post, $source, $oembed_data ){
- }, 10, 3 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement