我创建了一个自定义posts类型的cities,其减速代码为register_post_type(\'City\',$args);
$labels = array(
\'name\' => _x(\'Cities\', \'post type general name\'),
\'singular_name\' => _x(\'City\', \'post type singular name\'),
...... );
我安装了prime strategy面包屑来生成面包屑,但城市页面的确切url是
http://www.abc.com/wordpress/cities/ 面包屑生成的url为
http://www.acb.com/wordpress/city/ 这最终会把我带到帖子类型城市的归档页面,所以我必须在插件文件中进行更改,还是因为页面url,因为单个城市帖子的url是//www.abc。com/wordpress/city/shimla/和显示面包屑的代码在此页面中。