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

Receive error exception using xampp with wordpress

Andrew: As already mentioned, your curl call seems to be returning FALSE. It also appears than when you try to create a SimpleXML element with a boolean FALSE that it throws the exception you are seeing. I have also had problems accessing APIs via curl when on my localhost. I was able to solve it … Read more

WP http XML response HTML encoding and image display problems

Registering dependencies WordPress uses the Dependency API for that. It’s fairly simple: Register & enqueue a script, then pass data that you want to pass from WP/PHP to JS using wp_localize_script(), which adds a <script> tag containing an Array to your DOM (exactly before your script gets added to it): add_action( ‘wp_enqueue_scripts’, function() { $name=”handle”; … Read more