Created
June 10, 2018 15:15
-
-
Save ideadude/f152a3b21337212361cfbac5cd1671b6 to your computer and use it in GitHub Desktop.
Check for a localized version of an image. (BWAWWP Blog)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function localize_schoolpress_images_url( $url ) { | |
$locale = apply_filters( 'plugin_locale', get_locale(), 'schoolpress' ); | |
if ( $locale != 'en_US' ) | |
$url = SCHOOLPRESS_URL . '/languages/' . $locale . '/images/'; | |
return $url; | |
} | |
add_filter( 'schoolpress_images_url', 'localize_schoolpress_images_url' ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment