这里有一个想法:
您可以尝试使用future_to_publish
更改post状态的操作:
add_action(\'future_to_publish\', \'set_status_online_wpse_95701\');
function set_status_online_wpse_95701( $post ) {
if ( $post && $post->post_type==="stream"){
$post->post_status="online"; // change the post_status
wp_update_post( $post );
}
}