Wordpress提供了一种使用XML导入和导出数据的简便方法。它是使用基于GUI的内置导入程序完成的。然而,我想要做的是能够从我的主题中导入某些XML文件(激活时或执行函数后)。
我的情况: 虽然有一些插件可以为您创建虚拟内容,但我找不到任何方法来执行我想要做的事情 - 导入一组存储在XML文件中的ACF字段。
有任何方式吗?
答案 0 :(得分:6)
更新:此功能用于处理XML数据,仅限于版本4的ACF.ACF 5将其字段导出为JSON数据。
解决方案变成Wordpress plugin。
这是我的问题的解决方案。
function insert_acf_field( $xml_string, $allow_duplicates = false ) {
// Parse ACF post's XML
$content = simplexml_load_string( $xml_string, 'SimpleXMLElement', LIBXML_NOCDATA);
// Parse XML post attributes containing fields
$wp_post_attributes = $content->channel->item->children('wp', true);
# Copy basic properties from the exported field
$wp_post_data = array(
'post_type' => 'acf',
'post_title' => $content->channel->item->title,
'post_name' => $wp_post_attributes->post_name,
'post_status' => 'publish',
'post_author' => 1
);
$the_post = get_page_by_title($content->channel->item->title, 'OBJECT', 'acf');
# Execute only if doesn't exist already
if ( !$the_post || $allow_duplicates == true ) {
$post_id = wp_insert_post( $wp_post_data );
}
else {
$post_id = $the_post->ID;
}
$wp_post_meta = $content->channel->item->children('wp', true);
if( $wp_post_meta ) {
foreach ( $wp_post_meta as $row) {
// Choose only arrays (postmeta)
if( count($row) > 0) {
// using addlashes on meta values to compensate for stripslashes() that will be run upon import
update_post_meta( $post_id, $row->meta_key, addslashes( $row->meta_value ) );
}
}
}
}
以下是使用方法:
函数需要传递至少$xml_string
个参数。它应该包含在导出ACF字段时由ACF插件生成的XML文件的内容(acf
类型的帖子)。
该函数将尝试创建一个新的ACF帖子,除非已存在,然后用字段填充它。要插入具有相同标题的多个字段(克隆),您应该将true
作为第二个参数传递。
仍有一些问题需要解决,但当前状态下的功能应该可用