Created
September 21, 2017 10:02
-
-
Save ideag/4914b513e38d8a4907b8b2c87cd4d5be to your computer and use it in GitHub Desktop.
Extract translation file links from WP themes directory
This file contains 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
jQuery('.theme .url').each(function(){ | |
var slug = jQuery(this).prop('href'); | |
slug = slug.replace( 'https://wordpress.org/themes/', '' ); | |
slug = slug.replace( '/', '' ); | |
var pot = 'https://translate.wordpress.org/projects/wp-themes/'+slug+'/lt/default/export-translations'; | |
// window.location = pot; | |
console.log(pot); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment