Wordpress wp.media 特色图片 ID

Wordpress wp.media Featured Image ID

如何连接到现有 wp.media 对象并在单击 "Set Featured Image" 按钮时获取附件 ID?

我一直在看的 wp.media 教程似乎都是从创建一个新的 wp.media 框架开始的,但我只想听听来自现有框架的事件(由 wp_editor() 函数),特别是 "Set Featured Image" 事件。

尝试使用 wp.media.featuredImage 对象,更具体地说是它的 frame()get() 方法:

// on featured image selection...
wp.media.featuredImage.frame().on( 'select', function(){

    // ...get the attachment ID
    var attachment_id = wp.media.featuredImage.get();

    console.log( attachment_id );

});