首页 > 解决方案 > 在 wordpress 中评论后重定向到 url 链接

问题描述

我有这个代码,但它不工作。

add_action('comment_post_redirect', 'your_redirect_function');

// A function that redirects your users after they have commented.
function your_redirect_function ($location, $comment) {
    // Here all you need to do is return the url of your target page.
    $page = 'http://www.stackoverflow.com';
    return $page;
}

有什么建议么?

标签: wordpressfunction

解决方案


推荐阅读