Skip to content

Instantly share code, notes, and snippets.

@joseconti
Last active August 4, 2022 14:06
Show Gist options
  • Save joseconti/46a8e55df2bc39167f8f9bb7732b9b4c to your computer and use it in GitHub Desktop.
Save joseconti/46a8e55df2bc39167f8f9bb7732b9b4c to your computer and use it in GitHub Desktop.
<?php
add_filter( 'language_attributes', 'mi_lang_personalizado' );
function mi_lang_personalizado( $output ) {
if ( is_page( 34 ) ) {
return 'lang="en_US"';
}
return $output;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment