实际上,您可以通过使用save_post
钩子,您确实需要添加帖子互动程序,尽管WordPress使用它为帖子创建永久链接:
add_action( \'save_post\', \'wpse254636_save_without_content_title\', 10, 2 );
function wpse254636_save_without_content_title ( $post_id, $post ){
//This temporarily removes action to prevent infinite loops
remove_action( \'save_post\', \'wpse254636_save_without_content_title\' );
if ( \'post\' !== $post->post_type )
return;
//Get your custom title
$post_title = \'your custom title here\';
//UPDATE TITLE
wp_update_post( array(
\'ID\' => $post_id,
\'post_title\' => $post_title,
));
//redo action
add_action( \'save_post\', \'wpse254636_save_without_content_title\', 10, 2 );
}