not saving post in wp_post wordpress database table

As Milo noted, you need to call the importposts functions to have it do anything. Additionally, if your post is not inserted, post_id should hold a wp_error object, so you could see what is wrong by doing the following right before add_post_meta if ( is_wp_error( $post_id ) ) { echo “<p>Bad Post Attempt:</p><pre>” . print_r($post_id, … Read more

Split posts between databases

It is not doable if you want to keep around all wordpress features. Possible casualties of such configuration are search and RSS feeds, probably also category and author pages. If you go and actually create a new DB for each 1k posts then the game ends here as there is no simple way to share … Read more