Reputation: 195
I want to access and display posts/categories/tags of my one wordpress site to another wordpress site. So how can I do this? Can some one tell me this?
Upvotes: 4
Views: 3932
Reputation: 3356
Another option is to use data scraper plugin, through this you can display data of one page/post on another wordpress site all based on div id
http://wordpress.org/plugins/wp-web-scraper/
Upvotes: 0
Reputation: 12503
You have to use RSS feed http://codex.wordpress.org/WordPress_Feeds You can parse RSS as an XML file using PHP A RSS reader http://apptools.com/phptools/xml/rss.php
Upvotes: 3
Reputation: 638
If you have set up wordpress multisite then you can do it by using switch_to_blog() function.
Upvotes: 2