how can I change (rename / edit) the label of “Post Comment” button in single page?
I’d like to rename it from “Post comment” to “Spread your idea”.
Hi Haseda!
Please add following code to Functions.php file in Appearance > Editor
function add_custom_submit_button(){
?>
<script>
jQuery(window).load(function(){
jQuery('p.form-submit input').attr('value','Spread your idea');
});
</script>
<?php
}
add_action('wp_footer', 'add_custom_submit_button');
Cheers!
Yigit
Dear Yigit,
It works exactly I expected. Thanks for your support.
Takafumi