Skip to content

Instantly share code, notes, and snippets.

@ARCHTKT
Created August 5, 2021 08:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ARCHTKT/5c70306c7b75de1172be312a369a714f to your computer and use it in GitHub Desktop.
Save ARCHTKT/5c70306c7b75de1172be312a369a714f to your computer and use it in GitHub Desktop.
<?php /* No copiar esta linea */
//Redirigir de /?amp a su canonical para no perder ese tráfico
add_action( 'template_redirect', 'archtkt_redirect_amp' );
function archtkt_redirect_amp() {
if ( isset( $_GET['amp'] ) ) {
wp_safe_redirect( remove_query_arg( 'amp' ), 301 );
exit;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment