我认为这会起作用。
Edit
当然,您可以从if(
和后面的花括号return
当您想将其用于所有帖子/自定义帖子类型时,请将其删除。
/**
* Create dummy content
* @param [type] $content
* @version WP4.4.2
*/
function wpse218668_default_dummy_content( $content ) {
global $post_type;
if( $post_type == \'CustomPostType\' ) { // cpt name or post
// Add here your dummy txt
$content = \'Add here your dummy text\';
return $content;
}
}
add_filter( \'default_content\', \'wpse218668_default_dummy_content\', 99 , 1 );
在中阅读更多信息
Codex