尝试以下操作:
add_filter(\'the_title\', \'new_title\', 10, 2);
function new_title($title, $id) {
if(\'custom_version\' == get_post_type($id))
$title = \'New title \';
return $title;
}
和新内容
add_filter( \'the_content\', \'new_content\' );
function new_content( $content ) {
if ( is_singular(\'post\')) {
$content = \'New content\';
}
return $content;
}