if ( ! in_array( $post->post_type, array( \'internal_doors\' ) ) || \'publish\' != $post->post_status )
将上述内容替换为
if ( ! in_array( $post->post_type, array( \'internal_doors\',\'custom post type name1\', \'custom post type name2\' ) ) || \'publish\' != $post->post_status )
以及
if ( ! empty( $query->query[\'name\'] ) )
$query->set( \'post_type\', array( \'post\', \'internal_doors\', \'page\' ) );
将此替换为
if ( ! empty( $query->query[\'name\'] ) )
$query->set( \'post_type\', array( \'post\', \'internal_doors\',\'custom post type name1\', \'custom post type name2\', \'page\' ) );
注意:使用原始名称更改自定义帖子类型名称1、自定义帖子类型名称2