我在更新特定帖子元后不久将(插入)添加到非 Wp 表中,这部分工作正常,但是当在同一个功能上我尝试使用插入的非 wp 表的 ID 更新同一帖子的另一个元. 发布元不更新。
我尝试update_post_meta
使用自定义更新查询wp_query
我在下面附上我的代码,请帮助我。
add_action( 'updated_post_meta', 'user_vid_update', 10, 4 );
function user_vid_update($meta_id, $object_id, $meta_key, $_meta_value) {
if (strpos($meta_key,'video_code') !==false){
global $wpdb;
$half_key=strchr($meta_key,"video_code",true);
$title=$half_key.'video_title';
$vid_key=$half_key.'vmdbid';
$result = $wpdb->insert( $wpdb->vimeography_gallery, array( 'title' => $vid_key, 'date_created' => current_time('mysql'), 'is_active' => 1 ) );
$s_url='https://vimeo.com/album/'.$_meta_value;
$r_url='/album/'.$_meta_value;
$gallery_id = $wpdb->insert_id;
$allery_id=$gallery_id;
$result = $wpdb->insert( $wpdb->vimeography_gallery_meta, array(
'gallery_id' => $gallery_id,
'source_url' => $s_url,
'resource_uri' => $r_url,
'featured_video' => NULL,
'gallery_width' => NULL,
'video_limit' => 25,
'cache_timeout' => 3600,
'theme_name' => 'bugsauce' ) );
update_post_meta($object_id, $vid_key,$allery_id);
}
return true;
}
当我echo "update_post_meta($object_id, $vid_key,$allery_id);";
从所有变量中获取值时,如果我单独运行它,则发布元更新。
我正在使用 Advance 自定义字段转发器来创建字段,这就是我创建元键动态的原因。
提前致谢