wordpress非插件实现添加链接转跳功能

前端之家收集整理的这篇文章主要介绍了wordpress非插件实现添加链接转跳功能前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

链接形式http://localhost/?go=http://www.baidu.com这种形式转跳的方法

PHPcode5">add_action('wp_head','gourl');function gourl() { global $pagenow; if (is_home && $pagenow == 'index.PHP') { $location = $_GET['go']; if ($location != "") { wp_redirect(esc_url_raw($location),302); exit; } }} 原文链接:https://www.f2er.com/wordpress/15264.html

猜你在找的wordpress相关文章