Work with xml file and WordPress
Short answer: simplexml_load_file() + wp_insert_post() You want to feed on the XML, and parse it for information that you can use to make posts. Here is a short example, because I am not going to dissect that particular feed for you: $feed = simple_xml_load(‘http://example.com/feed.xml’); if($feed){ foreach($feed[‘items’] as $item){ $post_args = array( ‘post_title’ => $item->title, ‘post_content’ … Read more