Get content of publish box

时间:2015-12-10 作者:Jakub Kohout

有没有办法安全地获取发布框的内容?enter image description here

例如,通过挂钩或过滤器?我什么也没找到。

我需要换个地方。

1 个回复
SO网友:jgraup

add_action( \'post_submitbox_misc_actions\', \'show_current_filter\' );
add_action( \'post_submitbox_start\', \'show_current_filter\' );

function show_current_filter()
{
    $post = get_post();

    print \'<pre>\' .  $post->ID . \' : \' . current_filter() . \'</pre>\';
}