开发者 |
norcross
reaktivstudios |
---|---|
更新时间 | 2014年4月30日 22:37 |
捐献地址: | 去捐款 |
PHP版本: | 3.3 及以上 |
WordPress版本: | 3.9 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
extra-authors-redirect
to the /wp-content/plugins/
directory.No. this only affects people going to the /author/ template page on a site, and only affects those that have been marked to redirect.
Yes. There is a filter to change the default behavior. In your functions file, include the following:
function new_auth_url($location) { $location = 'http://google.com'; return $location; } add_filter( 'extra_author_redirect_url', 'new_auth_url' );