Reputation: 5198
On my webpage http://leona-anderson.com/ I am using the Minamaze theme https://wordpress.org/themes/minamaze
Since the page is in german I want to change every english text into german. I am trying for hours now to change the text of the "Read More" buttons listened on the frontpage. I read throw the theme code, checked all adjustable options, but couldn`t find a way yet.
Thanks in advance for any help.
Upvotes: 0
Views: 4019
Reputation: 1
In the Theme editor for minamaze it is under admin>main>options>02.homepage.php
Upvotes: 0
Reputation: 1013
This goes into your functions.php
function excerpt_more_german( $more ) {
return ' <a class="read-more" href="'. get_permalink( get_the_ID() ) . '">Read more in german</a>';
}
add_filter( 'excerpt_more', 'excerpt_more_german' );
You can read more about it in the excerpt's documentation
You could check this file admin/main/options/02.homepage.php
, I think that's what causing the problem.
Upvotes: 1