/**
* Redirecciona los adjuntos al post padre, o bien, a la portada.
*/
function attachment_redirect()
{
global $post;
if ( is_attachment() )
{
if( $post->post_parent )
wp_redirect( get_permalink($post->post_parent), 301 );
else
wp_redirect( home_url(), 301 );
exit;
}
}
add_action( 'template_redirect', 'attachment_redirect', 1 );
No hay comentarios:
Publicar un comentario