wordpress - String integration functions.php WPML -
hey guys trying translate last words of wp site. problem "read more" not translated. tried on wpml find solutin every time error 500 or text output not work.
/* modify wordpress read more link add_filter( 'the_content_more_link', 'modify_read_more_link' ); function modify_read_more_link() { return '... <a class="more-link" href="' . get_permalink() . '">read more</a>'; } //* modify genesis content limit read more link add_filter( 'get_the_content_more_link', 'matchstick_more_link' ); function matchstick_more_link() { return '... <a class="more-link" href="' . get_permalink() . '">read more</a>'; } function matchstick_custom_excerpt_more( $more ) { return '... <a class="more-link" href="' . get_permalink() . '">read more</a>'; }
and should insert
<?php _e( 'read me', 'text-domain' ); ?>
can tell me doing wrong because code snipet not working