No Results Found

The page you requested could not be found. Try refining your search, or use the navigation above to locate the post.

function cambiar_texto_boton_comentario($defaults) { $defaults['label_submit'] = 'Enviar'; return $defaults; } add_filter('comment_form_defaults', 'cambiar_texto_boton_comentario'); add_filter( 'gettext', function( $translated_text, $text ) { if ( $text === 'Submit Comment' ) { $translated_text = 'Enviar'; } return $translated_text; }, 20, 2 );