This is what I suggest get your RSS feed for site A
http://codex.wordpress.org/WordPress_Feeds
Install this plugin to Site B
https://wordpress.org/plugins/rss-post-importer/
It has the option to grab the post and save as draft. As for email you might need to add some code to send an email out when a new post is added.
function SendOutEmail($to, $subject, $message){
global $wpdb;
add_filter( 'wp_mail_content_type','set_mail_content_type' );
$headers="From: no-reply <[email protected]>";
if (is_array($to)){
foreach ($to as $email){
wp_mail( $email, $subject, $message ,$headers);
}
}else{
wp_mail( $to, $subject, $message ,$headers);
}
}
function set_mail_content_type(){
return "text/html";
}
Related Posts:
- What are options are there to implement a multi language site
- Post and Page Inheritance to subsites in a WordPress Network
- WP Multisite – multilanguage – swich to other language by click, but “same” content
- Running several WordPress sites on same core / plugins?
- Using WP Multisite for multi language site? A good option?
- How to synchronize user profile fields in multisite?
- Multisite – how to remove the root ‘/’ site?
- How to manage multiple domain with different languages on each domain with single wordpress installation?
- Should multi-language site using multi-site architecture have default language in base site?
- Synchronizing Two WordPress Sites Content
- Multisite use language code as subdirectory
- How to use both British and American English?
- Problem in Internationalizing a plugin built for network level usage
- htmll lang=”de” but admin page in English
- WordPress multisite change language
- Migrate a WP website from a single-server single-domain to a multi-server multi-domain installation
- Multiple install for multilanguage. How to?
- Multi language site with same content
- WordPress Multilingual Theme using Multisite
- What would you recommend for hosting 10+ individual wordpress websites?
- Should I use a multisite installation to achieve a multi-language site?
- Multisite domain naming
- WordPress Multisite new sites in directory
- Multilanguage site with two domains
- How to force change Network site multi language subdirectory base URL?
- Is the Multi site functionality a viable option for Country and Language targeting?
- Efficient way to handle translations with Multisite WordPress installation
- Multi-language site on different domains
- How to split existing blog into WordPress Multisites without breaking links?
- Multisite WPLANG won’t save
- Will WP work on a multi-server environment? [duplicate]
- Create sub-domain for multisite and multi languages?
- how to have __() translating in languages different from admin?
- Multisite – big hosting package or several hosting packages?
- How to sync roles across Multisite?
- Is this possible? A multisite with “www.example.com/en/blog/” and “www.example.com/cn/blog/” (two directories deep)
- Change Woocommerce languange on a multisite install
- Which Multi-language option for WordPress is best from an SEO and Woocommerce perspective?
- Creating a multilingual multisite
- Different site different div content – Multisite
- How much resources are good enough for 3.9.2
- Change language for each website using multisite
- WordPress multilingual site to work with other plugins
- unique identifier for the same pages in a multilanguage/site context
- How can I install WordPress as blog provider , stable?
- WordPress Multisite for multi-language
- How to update wordpress content of wordpress multi-site subdomain
- Structure of multilingual and multiregional directory listing website for translation
- Seeking solution to sync wordpress sites with Server
- Using WordPress multisite for subsites only
- Pass form inputs to page content
- WordPress theme to support single website but with 3 sections for 3 languages
- Multisite – How sync posts to multi sites
- Multiple Languages for each subsite on a Multisite
- multisite shared settings
- Multisites with different root directory
- Blog switch wpml string translation (multi-site)
- Configuring Multisite with subdomains
- How can I have different langauges in wp-admin on a multisite installation?
- Moved my site to new host now getting 404
- Add blog languages to blog-name inside my-site-list in admin-bar
- Help on setting up correct path for sites in multisite-setup
- cannot access subsites in wordpress multisite
- Multiple domains for with a single instal
- Are there any hosting companies that are already setup and configured for TLD domain mapping?
- multi-language multi-site with REST API
- Can i use the same content in two websites? one is the main website and one is directory website
- Moving a WP Multisite to a subdirectory
- $wpdb->base_prefix not get parent site prefix in multisite
- what are pmxi tables? [closed]
- Multisite 404 errors and non-www redirecting to home page
- Multisite, turn off “create new site”
- Hard Code Pages into a Theme for a Network (multisite) Installation
- How To Modify New Sub Blog Immediately When Super Administrator Creates It?
- User registration on sub site
- Multiple WP Sites Same Server – Share WP Base?
- Poor performance on multisite install
- Super admin access to a forgotten WP instance?
- Auto Redirect after login
- Iframe being removed only for some users when publishing a page
- Start with multi-site feature now or later?
- Add menu items/actions for multisite users who are registered on the network but do not have a role or capability in any sites
- WordPress Multisite with Addon Domains (not parked domain) [closed]
- Redirect One Multisite to Another
- Redirect to localhost after installing Multisite on server
- WordPress multisite install on two subdomains, each belonging to a separate domain
- How do I remove the “http://” from network_site_url?
- Performance disadvantge of second installation instead multisite feature?
- What is the simplest way to disable multisite leaving one of the sites only?
- What does multi-site WordPress application mean?
- Forward and mask a WordPress website
- Subdomain is not working
- How to automatically create an index of child sites at the root url for a multisite installation?
- Two-way synchronizing of a post type among multisite blogs
- Migration: previous URL redirection after migrating
- URLs for (MultiSite) link images are always relative
- How to allow mixed case characters in multisite site name?
- Make a select where the options are the different multisites
- Setting up wordpress on a hosting server for the first time
- Is there a full explanation on how to share a database with two WordPress sites on same server?