您可以向站点a中的发布后流程添加过滤器。过滤器将检查标签/类别,如果找到,则运行流程在站点B中创建帖子。
看见https://codex.wordpress.org/Plugin_API/Action_Reference/save_post . 类似于:
add_action( \'save_post\', \'my_site_b_create_post\' );
function my_site_b_create_post($post_id) {
// check for category
// if category, then save content of site A post into variable (maybe title, author, etc)
// create post on site B
return;
}
将那大块代码添加到函数中。站点A的php(当然是在子主题中,所以主题更新不会损坏您的代码)。