Title: Update title
Last modified: March 18, 2021

---

# Update title

 *  Resolved [khhelpname](https://wordpress.org/support/users/khhelpname/)
 * (@khhelpname)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/update-title/)
 * How do I change the title from dispatching? I’ve looked in setting and couldn’t
   find it.
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fupdate-title%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

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

 *  Plugin Author [Gemini Labs](https://wordpress.org/support/users/geminilabs/)
 * (@geminilabs)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/update-title/#post-14204491)
 * It sounds like you are asking how to modify the title of a review when it is 
   submitted. Is that correct? If so, please see the Hooks help page which explains
   how to modify the submitted review values before the review is created.
 *  [beme2021](https://wordpress.org/support/users/beme2021/)
 * (@beme2021)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/update-title/#post-14476419)
 * Hi there,
    Many thank for your plugin, it works like a charm !! After looking
   to the hooks & FAQ, I achieved to set the title to “Review_” but now I would 
   like to add the review_id to it. My goals is that all review title will have 
   the same structure “Review_”+review_id Thanks in advance for you time
 *  Plugin Author [Gemini Labs](https://wordpress.org/support/users/geminilabs/)
 * (@geminilabs)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/update-title/#post-14478361)
 * You can use the `site-reviews/review/created` hook which provides the created
   review, and use the review ID to update the review post title.
 *     ```
       wp_update_post([
           'ID' => $review->ID,
           'post_title' => 'Review_'.$review->ID,
       ]);
       ```
   
 * If you do this, you will probably also want to use the `hide` option on the form
   shortcode to hide the title field.
 *  [beme2021](https://wordpress.org/support/users/beme2021/)
 * (@beme2021)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/update-title/#post-14478928)
 * BOOM & Wahou !!!
    Excellent, it works perfectly Many thanks
 *  Plugin Author [Gemini Labs](https://wordpress.org/support/users/geminilabs/)
 * (@geminilabs)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/update-title/#post-14482624)
 * In v5.11.0 you will also be able to do this:
 *     ```
       glsr_update_review($review->ID, [
           'title' => 'Review_'.$review->ID,
       ]);
       ```
   

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

The topic ‘Update title’ is closed to new replies.

 * ![](https://ps.w.org/site-reviews/assets/icon-256x256.gif?rev=3307009)
 * [Site Reviews](https://wordpress.org/plugins/site-reviews/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/site-reviews/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/site-reviews/)
 * [Active Topics](https://wordpress.org/support/plugin/site-reviews/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/site-reviews/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/site-reviews/reviews/)

 * 5 replies
 * 3 participants
 * Last reply from: [Gemini Labs](https://wordpress.org/support/users/geminilabs/)
 * Last activity: [4 years, 11 months ago](https://wordpress.org/support/topic/update-title/#post-14482624)
 * Status: resolved