Set up and manage an HTTP 301/302 Redirect from the URL of any post type to another URL, either on your site or externally.
WP Avertere supports a single filter, wp_avertere_protocols that allows you to change the set of acceptable URL protocols that WordPress and the plugin permits.
Example: Add support for GitHub repositories to the plugin.
add_filter ('wp_avertere_protocols', 'add_github_protocol');
function add_github_protocol ($protocols) {
// protocols = array ('name', 'name', ...)
$protocols[] = 'git';
return $protocols;
}
Requires: 3.4 or higher
Compatible up to: 3.4.2
Last Updated: 2012-11-8
Downloads: 840
0 of 1 support threads in the last two months have been resolved.
Got something to say? Need help?