WordPress上载文件操作挂钩

时间:2014-04-18 作者:pbaldauf

我在管理界面中显示了一个名为“Magazine”的自定义帖子类型。每次用户uploads A.file 在我的自定义帖子类型“Magazine”的wp admin中,我想启动一个钩子,因为我必须处理文件。

有没有action hook 我可以在这种情况下使用吗?

希望有人能帮助我。

1 个回复
最合适的回答,由SO网友:Alex P 整理而成

试试这个方法,应该很管用

function cpt_from_attachment($attachment_ID)
    {          
    global $current_user;
    get_currentuserinfo();

    $attachment_post = get_post( $attachment_ID );

    $type = get_post_mime_type($attachment_ID);

    // DO WHAT YOU NEED
}

add_action("add_attachment", \'cpt_from_attachment\');

结束

相关推荐

theme functions (hooks)

WordPress已经提出了这个问题,但没有答案。我只是想在这个论坛上试试,如果有人知道的话,因为我也有同样的问题。要使用jquery滑块编辑我的主题,如何转到该脚本?,显示“$主题->挂钩(\'content\\u before\');”在content div标记中。有人能帮忙吗?我的主题索引。php包含以下内容<div id=\"main\"> <?php $theme->hook(\'main_before\'); ?> &#x