Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ideadude/f152a3b21337212361cfbac5cd1671b6 to your computer and use it in GitHub Desktop.
Save ideadude/f152a3b21337212361cfbac5cd1671b6 to your computer and use it in GitHub Desktop.
Check for a localized version of an image. (BWAWWP Blog)
<?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