Custom user profile URLs 时间:2012-12-14 作者:Ken 我创建了一个页面“profile”,当使用用户id的get变量访问该页面时,如:http://example.com/profile/?uid=1 然后将显示用户id的配置文件详细信息1. 现在我想重写…http://example.com/profile/?uid=1 …至…http://example.com/profile/admin 如何做到这一点? 1 个回复 SO网友:fuxia Create an endpoint for EP_ROOT 已命名profile.在回调处理程序中使用get_user_by( \'slug\', get_query_var( \'profile\' ) ) 查找用户数据创建模板文件profile.php 和使用locate_template( \'profile.php\', TRUE ) 加载它在模板中显示用户数据 结束 文章导航