0

is there any way how to safely get content of the publish box? enter image description here

For example via some hook or filter? I wasn't able to find anything.

I need to place in in some different place.

Jakub Kohout
  • 125
  • 2
  • 6

1 Answers1

0
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>';
}
jgraup
  • 9,914
  • 3
  • 32
  • 70