1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <?php /* Template Name: Redirect */ if (have_posts()) { the_post(); $pattern = '@(https?://([-\w\.]+)+(:\d+)?(/([\w/_\.]*(\?\S+)?)?)?)@'; preg_match($pattern, get_the_excerpt(), $matches); if ($matches[0]) header('Location: '.$matches[0]); else echo 'Enter a URL into your page body text.'; } ?> |
http://snipplr.com/view/24727/wordpress-page-redirect-template/
喜欢这篇文章吗?
请订阅本站 RSS feed 或




回复 (0)