Featured Image Action Hook

时间:2018-08-17 作者:Albin Joseph

一旦特色图像被设置为帖子,是否有一个可以返回特色图像的挂钩?

我检查过了Which action hook can I use when a featured image has been selected 添加特色图像时,不会执行上面提到的动作挂钩。

1 个回复
SO网友:Levi Dulstein

如果你想在保存帖子之前捕捉到事件,你将无法用PHP完成这一操作-设置特色图像是用JavaScript完成的(有一个隐藏字段,当用户从媒体上传器中选择缩略图时,它的值用JS填充。此外,缩略图预览也是用JavaScript呈现的。)因此WordPress挂钩在这里没有用处,您需要查找JavaScript事件。

好消息是,您仍然可以使用JS an wp。媒体API如下:

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

    // get the selected image ID
    var thumb_id = wp.media.featuredImage.get();

    // there you go, thumb_id is the picked image ID
    console.log( thumb_id );
});
每次用户从上传程序设置缩略图时,都会触发此操作。

结束

相关推荐

Wordpress Admin Tooltip hooks

我想知道是否有一种方法可以使用Wordpress管理工具提示(灰色和蓝色),当你更新你的Wordpress(3.x)时会显示这些提示。显示新功能。谢谢