要通过logout_url在WordPress后台登出后跳转到指定页面,您可以使用以下代码示例:

通过logout_url实现wordpress后台登出跳转到指定页面

function custom_logout_redirect( $logout_url, $redirect ) {    // 修改跳转链接为您想要的页面URL    $redirect = 'https://example.com/customlogoutpage';    return str_replace( $logout_url, $logout_url . '&redirect_to=' . urlencode( $redirect ), $logout_url );}add_filter( 'logout_url', 'custom_logout_redirect', 10, 2 );

将这段代码添加到您的主题的functions.php文件中,或者使用一个自定义插件来添加它。这段代码将拦截WordPress后台的登出URL,并将重定向参数设置为您指定的页面URL。

确保将 'https://example.com/customlogoutpage' 替换为您要跳转到的实际页面的URL。这样,当用户从WordPress后台注销时,他们将被重定向到指定的页面。