Importing URLs of Audio Enclosures

It’s hard to tell what you’re working with from the image, but I’ll assume newline breaks. <?php $string = “http://www.podcast.com/track.mp3 2207703 audio/mpeg”; echo “<pre>”; echo $string; // should show multiple rows To grab the first line, try preg_match: // now grab the first line if( preg_match (‘/^(.*)$/m’, $string, $matches) ){ echo $matches[0]; // first line … Read more

XML file import for attachments or featured images

I’m not aware of the way this could be done with a WXR file alone; after all attachments are posts, and if you’re importing images from elsewhere you’d need to do all the WordPress processing on them to make them into posts (from WordPress’s point of view). You may get inspired with how this plugin … Read more

import excel form into wordpress

I honestly think you’d be better off just doing it manually. ~200 rows of items isn’t really that much, relatively. And even if you did find a way to import the excel file to make a form out of it, you’d still need to edit most of the data fields anyway. I highly doubt you’d … Read more

Import demo data into wordpress template

After installing all required plugins of theme. goto tool->import install wordpress importer plugin then import your content.xml file. Also you can find all information inside theme documentation.

Theme unit test error

To be clear all of those errors seem to be due to the WordPress Importer plugin itself. You can tell because all the PHP Notices mention: /home/user/public_html/wordpress/wp-content/plugins/wordpress-importer/wordpress-importer.php This is not your fault nor something you will be able to resolve without contributing to the plugin itself (see the final part of this answer if you … Read more

Categorizing Just Imported Posts

For changing the category from Tumblr to another one for that you need to create another caregory at <pre> Posts -> Categories -> Add New </pre> first and than filter categories by Tumblr And than all Tumblr category’s Posts disaplay and do QUICK EDIT for changing the categories.

Import settings from another theme

Well, you can read the core code to find the actions, or you can use a debugging method to find the one you need. Put into wp-config.php: define(‘WP_DEBUG’, true); define( ‘WP_DEBUG_LOG’, true ); Then make a mu-plugin file containing: <?php add_action( ‘all’, ‘_action_printer’ ); function _action_printer( $a ){ if (strpos(‘gettext’, $a) === false && strpos(‘escape’, … Read more