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

  1. Create an endpoint for EP_ROOT 已命名profile.get_user_by( \'slug\', get_query_var( \'profile\' ) ) 查找用户数据profile.php 和使用locate_template( \'profile.php\', TRUE ) 加载它

结束