当你说要检查post类型“mobile”时,你输入了“mobiles”。因此,只需删除s;)。
<? if( post_type_exists( \'mobiles\' ) ) { echo \'The Products post type exists\';} ?>
应为:
<? if( post_type_exists( \'mobile\' ) ) { echo \'The Mobile post type exists\';} ?>
如果仍不起作用,请再次检查您是否成功注册了名为“mobile”的帖子类型。