How to post same content on multisite?

Here’s a concept code (i.e. not tested, requires tweaking) that you could maybe use. With this example a post you create would get cloned to other subsites in your network. function copy_content( $post_id, $post, $update ) { // check for revision, autosave, etc. $args = array( ‘site__not_in’ => array( get_current_blog_id() ), ); $sites = get_sites( … Read more