The plugin doesn't seem to be working for my blog.
I have roughly a thousand posts I need to generate from a live XML feed and the tags vary from the wordpress standard. For instance
title = long_name
pubdate = created_at
category = group_type
How do I make these changes? And does the plugin automatically generate the posts once the .php file is properly in order?
So far I listed the strings like so
$post_title = $item->long_name;
$pubDate = $item->created_at;
$categories = $item->group_type;
Is that right?
And if I wanted to add additional fields how would I go about creating those strings properly and have them displayed in the content area?
Any help would be helpful