For archives you can use the get_archives_link filter like this:
add_filter('get_archives_link', 'translate_archive_month'); function translate_archive_month($list) { $patterns = array( '/January/', '/February/', '/March/', '/April/', '/May/', '/June/', '/July/', '/August/', '/September/', '/October/', '/November/', '/December/' ); $replacements = array( //Put here whatever you want '01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12' ); $list = preg_replace($patterns, $replacements, $list); return $list; }
Hope it helps.
Related Posts:
- Override default WordPress core translation
- How to debug failed load_theme_textdomain()?
- How to escape the single quote character in i18n translation strings?
- How do translated, escaped strings (esc_attr) in Themes work?
- Changing the language of a single page
- what’s different between _x() and _()
- Obtain a list of available translations
- How do I translate: “2 hours and 15 minutes”?
- How to escape single and plural i18n text strings?
- List of Default Translated Phrases
- What are the most used WordPress localization?
- How to add extra language packs to WordPress
- load_plugin_textdomain in `plugins_loaded` or `init`?
- Difference between 2 internationalization (i18n) functions __() & _e()
- How to extract translatable (double underscores and _e) strings?
- Translate Navigation Menu & Sidebar Widget Titles
- Translate content, not instance, per-post
- How to load theme textdomain from plugin?
- How to handle single quote in a translatable string in WordPress
- Make theme translatable for WPML
- How can I make “Leave a comment” translation ready?
- Multiple text-domains per single plugin – admin and frontend
- Where the WordPress Core Translation is “actually” taking place?
- How to translate theme name
- How to get menu strings, categories and tags into po file for translation
- How to save a translation of a plugin in “CodeStyling Localization”?
- Using polylang, how can I see which post is the “original” and which are the “translated children”? [closed]
- Use WordPress default text domain for translating labels
- Where is the right .mo file inside the language repository?
- setlocale for date
- where to set the PO file for a plugin?
- Replacing strings within posts with the translatable string
- Should I include colon in my msgid in PO file?
- How to display get_post_type() translated?
- Replace text string on individual page
- Change template copy with po/mo files
- How to syntax Json output for translation?
- Translating a word with locotranslate, but wordpress does display another by default
- Can’t generate pot file using wp cli
- How do I translate month names in post metadata?
- How to avoid override string by child theme mo files when the string is empty?
- How to translate timestamp?
- Add a string to file .pot using Poedit
- Use the wp-admin translations on the front end
- Translatable Categories
- Force translated language on front
- Translate theme only
- what’s different between _x() and _()
- WordPress translation loading english file
- How can I see my theme’s text domain?
- WordPress Theme .mo-file won’t load
- Making a string translation ready with html in it
- Translation for plugin
- How to become a translator on wordpress.org?
- WordPress Translation Issue
- Localization, escape html elements mid-sentence
- How to translate “$before” with get text in get_the_term_list?
- Translation with wordpress what does the process involve?
- Found a translation function that is missing a text-domain. Function _n
- How to translate custom Divi module using POEDIT and Polylang [closed]
- Can I set WordPress to display languages based on system language without a plugin?
- How to add a translatable string to post date
- Trying to localize a Underscores starter theme [duplicate]
- How to use esc_attr__ with custom translation function?
- Programmatically choose language for translation
- Post types translation
- mo / po translation files does not seem to work
- How to define theme translation file?
- Internationalize plugin so strings can be translated in WPML [closed]
- String translation for esc_html__() when registering string [closed]
- Translations not working on Safari
- Making WP theme / plugin multii-lingual without plugins
- __() function inside html tags
- How to do translations in WordPress?
- printf, translation function and date_i18n adds extra characters
- Qtranslate-X get raw post title value
- Interface translation without plugins
- WordPress does not translate
- Debug WordPress gettext function
- qtranslate loading the wrong language
- issue in translating a wordpress them
- Understanding WordPress Default Theme – twentyfifteen.1.4 >> Languages Folder
- WordPress Localization error within return value
- Custom theme .mo translation file not working
- Plugin translation not displaying
- Adding a translation phrase to WordPress Theme
- Translate Plugin with french as base language
- Language & translation
- Tweak the loop for translation
- GlotPress – WordPress integration
- How to translate placeholder?
- Poedit ASCII errors ( WordPress )
- Does WPML translate numbers automatically, or do I have to do the string translation? [closed]
- Translations in source code
- WPML & Events Manager translatable fields after duplication
- Theme translation file translating some strings and not translating others
- multisite same language different translation
- How to find posts that are missing translation? (wpml)
- Translate via URL parameter working only in localhost
- .po file is loaded but changes are not appearing