Title: Post Comment Button
Last modified: December 3, 2017

---

# Post Comment Button

 *  [graemewalker](https://wordpress.org/support/users/graemewalker/)
 * (@graemewalker)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/post-comment-button-2/)
 * I’ve been playing around with the ‘Comment’ settings with one of my client’s 
   site. I’ve managed to change the title from ‘Comment’ to ‘Review’ via the use
   of a plug-in, but for the life of me I can’t find how to change the black button
   from ‘Post Comment’ to ‘Post Review’.
 * Any help would be appreciated.
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fpost-comment-button-2%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 5 replies - 1 through 5 (of 5 total)

 *  [mozakdesign](https://wordpress.org/support/users/mozakdesign/)
 * (@mozakdesign)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/post-comment-button-2/#post-9745666)
 * One option could be to use the following dynamic search and replace plugin:
    
   [https://wordpress.org/plugins/cm-on-demand-search-and-replace/](https://wordpress.org/plugins/cm-on-demand-search-and-replace/)
 * This way you do not need to touch any code
    -  This reply was modified 8 years, 5 months ago by [mozakdesign](https://wordpress.org/support/users/mozakdesign/).
 *  [Maciej Pilarski](https://wordpress.org/support/users/gomp/)
 * (@gomp)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/post-comment-button-2/#post-9745671)
 * Hi there!
 * Such change would require to edit the source file of your theme:
 * <input name=”submit” type=”submit” id=”submit” class=”submit” value=”Post Comment”
   >
 * You need to change the value=”Post Comment” to value=”Post Review”.
 * Keep in mind if you modify this directly in your theme it will be removed with
   any update.
 * What I would advise is creating a child theme:
    [https://codex.wordpress.org/Child_Themes](https://codex.wordpress.org/Child_Themes)
 * Let me know if this helps.
 *  Thread Starter [graemewalker](https://wordpress.org/support/users/graemewalker/)
 * (@graemewalker)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/post-comment-button-2/#post-9745790)
 * Hi Matt – where would I correct this in the source file? I have a number of .
   php files and I’ve scanned then all for any reference to “Post Comment” and have
   drawn a blank. This is the coding in the comment.php:
 * <?php
    /** * The template for displaying comments. * * This is the template that
   displays the area of the page that contains both the current comments * and the
   comment form. * * [@link](https://wordpress.org/support/users/link/) [https://codex.wordpress.org/Template_Hierarchy](https://codex.wordpress.org/Template_Hierarchy)**
   [@package](https://wordpress.org/support/users/package/) The Automobile */
 * /*
    * If the current post is protected by a password and * the visitor has not
   yet entered the password we will * return early without loading the comments.*/
   if ( post_password_required() ) { return; } ?>
 * <div id=”comments” class=”comments-area”>
 *  <?php
    // You can start editing here — including this comment! if ( have_comments()):?
   > <h2 class=”comments title”> <?php $comments_number = get_comments_number();
   if ( ‘1’ === $comments_number ) { /* translators: %s: post title */ printf( _x(‘
   One thought on “%s”’, ‘comments title’, ‘the-automobile’ ), get_the_title() );}
   else { printf( /* translators: 1: number of comments, 2: post title */ _nx(‘%
   1$s thought on “%2$s”’,’%1$s thoughts on “%2$s”’, $comments_number,’comments 
   title’,’the-automobile’), number_format_i18n( $comments_number ), get_the_title());}?
   > </h2>
 *  <?php if ( get_comment_pages_count() > 1 && get_option( ‘page_comments’ ) ) ://
   Are there comments to navigate through? ?>
    <nav id=”comment-nav-above” class
   =”navigation comment-navigation” role=”navigation”> <h2 class=”screen-reader-
   text”><?php esc_html_e( ‘Comment navigation’, ‘the-automobile’ ); ?></h2> <div
   class=”nav-links”>
 *  <div class=”nav-previous”><?php previous_comments_link( esc_html__( ‘Older Comments’,‘
   the-automobile’ ) ); ?></div>
    <div class=”nav-next”><?php next_comments_link(
   esc_html__( ‘Newer Comments’, ‘the-automobile’ ) ); ?></div>
 *  </div><!– .nav-links –>
    </nav><!– #comment-nav-above –> <?php endif; // Check
   for comment navigation. ?>
    1.  <?php
        wp_list_comments( array( ‘style’ => ‘ol’, ‘short_ping’ => true, ) );?
       >
 * <!– .comment-list –>
 *  <?php if ( get_comment_pages_count() > 1 && get_option( ‘page_comments’ ) ) ://
   Are there comments to navigate through? ?>
    <nav id=”comment-nav-below” class
   =”navigation comment-navigation” role=”navigation”> <h2 class=”screen-reader-
   text”><?php esc_html_e( ‘Comment navigation’, ‘the-automobile’ ); ?></h2> <div
   class=”nav-links”>
 *  <div class=”nav-previous”><?php previous_comments_link( esc_html__( ‘Older Comments’,‘
   the-automobile’ ) ); ?></div>
    <div class=”nav-next”><?php next_comments_link(
   esc_html__( ‘Newer Comments’, ‘the-automobile’ ) ); ?></div>
 *  </div><!– .nav-links –>
    </nav><!– #comment-nav-below –> <?php endif; // Check
   for comment navigation.
 *  endif; // Check for have_comments().
 *  // If comments are closed and there are comments, let’s leave a little note,
   shall we?
    if ( ! comments_open() && get_comments_number() && post_type_supports(
   get_post_type(), ‘comments’ ) ) : ?>
 *  <p class=”no-comments”><?php esc_html_e( ‘Comments are closed.’, ‘the-automobile’);?
   ></p>
    <?php endif;
 *  comment_form();
    ?>
 * </div><!– #comments –>
 *  [Maciej Pilarski](https://wordpress.org/support/users/gomp/)
 * (@gomp)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/post-comment-button-2/#post-9745832)
 * Thanks for your reply.
 * Have you tried checking post.php or page.php?
 *  Thread Starter [graemewalker](https://wordpress.org/support/users/graemewalker/)
 * (@graemewalker)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/post-comment-button-2/#post-9745924)
 * I don’t see it. Here are the two .php scripts:
 * **Single Page – page.php:**
 * <?php
    /** * The template for displaying all pages. * * This is the template 
   that displays all pages by default. * Please note that this is the WordPress 
   construct of pages * and that other ‘pages’ on your WordPress site may use a *
   different template. * * [@link](https://wordpress.org/support/users/link/) [https://codex.wordpress.org/Template_Hierarchy](https://codex.wordpress.org/Template_Hierarchy)**
   [@package](https://wordpress.org/support/users/package/) The Automobile */
 * get_header(); ?>
 *  <div id=”primary” class=”content-area”>
    <main id=”main” class=”site-main” role
   =”main”>
 *  <?php
    while ( have_posts() ) : the_post();
 *  get_template_part( ‘template-parts/content’, ‘page’ );
 *  // If comments are open or we have at least one comment, load up the comment
   template.
    if ( comments_open() || get_comments_number() ) : comments_template();
   endif;
 *  endwhile; // End of the loop.
    ?>
 *  </main><!– #main –>
    </div><!– #primary –>
 * <?php
    get_sidebar(); get_footer();
 * **Single Post – single.php (there is no post.php):**
 * <?php
    /** * The template for displaying all single posts. * * [@link](https://wordpress.org/support/users/link/)
   [https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post](https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post)**
   [@package](https://wordpress.org/support/users/package/) The Automobile */
 * get_header(); ?>
 *  <div id=”primary” class=”content-area”>
    <main id=”main” class=”site-main” role
   =”main”>
 *  <?php
    while ( have_posts() ) : the_post();
 *  get_template_part( ‘template-parts/content’ );
 *  the_post_navigation();
 *  // If comments are open or we have at least one comment, load up the comment
   template.
    if ( comments_open() || get_comments_number() ) : comments_template();
   endif;
 *  endwhile; // End of the loop.
    ?>
 *  </main><!– #main –>
    </div><!– #primary –>
 * <?php
    get_sidebar(); get_footer();

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Post Comment Button’ is closed to new replies.

## Tags

 * [post comment](https://wordpress.org/support/topic-tag/post-comment/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 5 replies
 * 3 participants
 * Last reply from: [graemewalker](https://wordpress.org/support/users/graemewalker/)
 * Last activity: [8 years, 5 months ago](https://wordpress.org/support/topic/post-comment-button-2/#post-9745924)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
