1 WordPress, 2 themes, 2 domains, 2 servers

I can think of 2 approaches to try: You can use a referrer variable within the link such as: domain-two.net/blog/?ref=blog2 The receiving blog should watch out for the content of the ref variable. You can just copy domain-one.com into domain-two.net/blog, then access the database of domain-one.com remotely via wp-config.php

Rewrite rules for custom post type

You need to look at add_rewrite_tag() and add_rewrite_rule() Also read this and this topics. They are very close to you issue. After you setup rewrite rule don’t forget to flush rules add_action( ‘wp_loaded’,’my_flush_rules’ ); // flush_rules() if our rules are not yet included function my_flush_rules(){ $rules = get_option( ‘rewrite_rules’ ); $pattern = ‘news/([^/]+)?’; // the … Read more