像Wyck said, 这只是一个form that uses post.php
. 要检查QuickPress是否是拨打电话的人,请使用:
add_action( \'publish_post\', \'check_for_quickpress_wpse_109961\' );
function check_for_quickpress_wpse_109961( $post_id )
{
if( \'post-quickpress-publish\' == $_POST[\'action\'] )
{
// do_something();
}
}