通过媒体编辑器上载图像时,操作挂钩add_attachment
被触发,使用ID
作为参数传递的附件的。您可以使用ID
确定ID
图像附加到的帖子/页面的(存储在post_parent
财产)。示例代码:
add_action( \'add_attachment\', \'GoWP_wpse156258\' );
function GoWP_wpse156258( $ID ) {
$attachment = get_post( $ID );
$post_id = $attachment->post_parent;
update_post_meta( $post_id, \'your_meta_key\', \'your_meta_value\' );
}
希望有帮助!