How do I change the words "posted by" and "on" that show on top of each WP post, to my own language?
For example I want to change this:
Posted by محمد on 6 نوفمبر 2018, 12:22 م
to:
كتبه محمد في 6 نوفمبر 2018, 12:22 م
I'm using a custom functions plugin, so I can add the code that you provide.
How do I change the words "posted by" and "on" that show on top of each WP post, to my own language?
For example I want to change this:
Posted by محمد on 6 نوفمبر 2018, 12:22 م
to:
كتبه محمد في 6 نوفمبر 2018, 12:22 م
I'm using a custom functions plugin, so I can add the code that you provide.
This can MOST LIKELY be done with the get_text filter. Here's an example (and then some caveats):
function my_theme_text_switcher( $translations, $text, $domain ) {
if ( $domain == 'my-theme' && $text == 'posted by' ) {
$translations = __( 'YOUR TEXT HERE', 'my-theme' );
}
if ( $domain == 'my-theme' && $translations == 'on' ) {
$translations = __( 'YOUR TEXT HERE', 'my-theme' );
}
return $translations; }
add_filter( 'gettext', 'my_theme_text_switcher', 10, 3 );
Now the caveats:
__('post by', 'my-theme');