How to translate to spanish wordpress hardcoded content/files?
So it depends, one 2 things: hardcoded HTML tags containing spanish text i18n api text, e.g. echo __( ‘string’, ‘textdomain’ ); You want the latter, but the theme author may not have used that API Hardcoded HTML tags This is when the text is hardcoded in the file, e.g. <p>spanish text</p> <?php echo “spanish text”; … Read more