Quote:
Originally Posted by CyberSEO
Depends on how exactly the tags are formatted in the XML file. E.g. if they are comma-delimited, you can import them with this code:
Code:
$post['tags_input'] = explode(',', $post['custom_fields']['some_custom_field']);
|
I need insert one single custom field to one single tag.
tnx
edit:
Code:
$post['tags_input'] = $post['custom_fields']['some_custom_field'];
look correct for it?