Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function redirect_shortcode($atts)
- {
- extract(shortcode_atts(array(
- 'address' => 'http://tolik-punkoff.com',
- 'code'=> '302',
- ), $atts));
- wp_redirect( $address, $code );
- die();
- }
- add_shortcode ('redirect','redirect_shortcode');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement