Working with the Broadcast Plugin
-
I’m running AutomatorWP on a multisite network – it’s only activated on our main site. We’re using it to trigger an email when a new post is created.
However, we also use the Broadcast plugin to send posts from other sites in our install to the main website.
The issue I’m having is that any post that comes into our main site via Broadcast doesn’t trigger the email. Broadcast copies the content to the post table of each site you send it to.
I spoke with the developer of Broadcast, and he thought there may be a way to add compatibility. He shared the following info on how the plugin works:
Just before Broadcast is finished creating / updating the post on the child site, the following action is called.
threewp_broadcast_broadcasting_before_restore_current_blog( $action )The ID of the post that has been created or updated is found here:
$action->broadcasting_data->new_post( 'ID' )`Do you have any advice for making these plugins work together?
Thanks for your time!
The topic ‘Working with the Broadcast Plugin’ is closed to new replies.