wpml_current_language

wpml_current_language

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: siteorigin-panels.2.31.5

apply_filters('wpml_current_language') is found 1 times:

  • /inc/sidebars-emulator.php line 78
    75
    76
    77
    78
    79
    80
    81
    82
    83
    // Detect current page id using path.
    if ( ! empty( $current_url['path'] ) ) {
        // Check if WPML is running.
        $wpml_language = apply_filters( 'wpml_current_language', null );
     
        if ( ! empty( $wpml_language ) ) {
            // Remove the current language code from path to avoid 404.
            $current_url['path'] = preg_replace( "/^\/$wpml_language\//", '/', $current_url['path'], 1 );
        }