• Skip to main content
  • Skip to primary sidebar

WordPress, Genesis Framework and Storefront customization tutorials

  • Archive
    • Free
    • Premium
  • Blog
  • About
  • Contact
  • Newsletter
  • Login
Home ยป TranslatePress Current Language

TranslatePress Current Language

<?php
/**
* Check current language set by TranslatePress
*
* This hook outputs the current language set by TranslatePress plugin
* to the browser console for debugging purposes.
*/

add_action( 'wp_head', 'log_current_language_to_console' );

function log_current_language_to_console() {
// Get current language from TranslatePress
$current_lang = do_shortcode( '[trp_language_switcher type="code"]' );

// Alternative methods to get current language
if ( empty( $current_lang ) || strpos( $current_lang, '[' ) !== false ) {
// Method 1: Check $_GET for lang parameter
if ( isset( $_GET['lang'] ) ) {
$current_lang = sanitize_text_field( $_GET['lang'] );
}
// Method 2: Check TranslatePress global
elseif ( function_exists( 'trp_get_current_language' ) ) {
$current_lang = trp_get_current_language();
}
// Method 3: Use apply_filters
else {
$current_lang = apply_filters( 'trp_user_language', get_locale() );
}
}

// Output to browser console and as data attribute
$lang_code = sanitize_text_field( $current_lang );
?>
<script>
console.log('TranslatePress Current Language:', '<?php echo esc_js( $lang_code ); ?>');
</script>
<?php
}

Filed Under: Free Tagged With: WooCommerce

About Gabor Flamich

I'm a web developer and designer based in Budapest, Hungary. In recent years, I've documented hundreds of solutions I came across during development. This site is an archive for useful code snippets on WordPress, Genesis Framework and WooCommerce. If You have any questions related to WordPress development, get in touch!

Reader Interactions

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

Gabor Flamich

Hi! I'm Gabor.
I write tutorials on WordPress and WooCommerce.

MacBook

12 Essential Snippets for Genesis Developers

Subscribe to my Newsletter to view my basic collection of Genesis snippets that I use for my projects!

Sign Up for Free
  • Facebook
  • GitHub
  • Instagram
  • LinkedIn
  • Twitter
  • YouTube
UpdraftPlus Premium

Tags

ACF Ajax Analytics API Bootstrap Breadcrumb category CPT CSS fetch FSE Genesis Google Maps Gutenberg HTML Isotope JavaScript jQuery loop Map Menu Parallax PHP Rest API SASS SEO SQL Storefront SVG tab tag manager tags Taxonomy Tool upsell Webpack Wholesale WooCommerce WordPress WPML

Disclosure: Some of the links in this site are affiliate links. I will be paid a commission if you use this link to make a purchase.

  • Privacy Policy / Terms of Service
© 2026 WP Flames - All Right Reserved