wpml_current_language

wpml_current_language

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

See hook in core

Displaying hooks found in version: siteorigin-panels.2.29.9

apply_filters('wpml_current_language') is found 1 times:

  • /inc/sidebars-emulator.php line 78
     
    		// 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 );
    			}