How Do I Add a Review Box in WordPress?

Adding a review box to your WordPress site is easy. First, add the following code to your theme’s functions.php file:

add_action(‘save_post’, ‘my_custom_function’);

Then add the following code to your post form:

echo ‘

‘;

echo ‘‘;

echo ‘ ‘;

echo ‘ ‘;

echo ‘

‘;

That’s it! Now you can add a review box to your posts by simply clicking the “Review This Post” button.