这个press_this_save_post
筛选器可用于从post
至第页。将以下代码添加到主题的函数中。php或插件:
add_filter( \'press_this_save_post\', \'wpse244633_press_this_save_post\' );
/**
* Filter the post data of a Press This post before saving/updating.
*
* @param array $post_data The post data.
* @return array
*/
function wpse244633_press_this_save_post( $post_data ) {
$post_data[\'post_type\'] = \'page\';
return $post_data;
}