</tr>
        <tr class="recipe-general-form-rating">
            <td class="recipe-general-form-label"><label for="recipe_rating"><?php 
_e('Rating', 'wp-ultimate-recipe');
?>
</label></td>
            <td class="recipe-general-form-field">
                <select name="recipe_rating" id="recipe_rating">
                    <?php 
for ($i = 0; $i <= 5; $i++) {
    ?>
                    <option value="<?php 
    echo $i;
    ?>
" <?php 
    echo selected($i, $recipe->rating_author());
    ?>
>
                        <?php 
    echo $i == 1 ? $i . ' ' . __('star', 'wp-ultimate-recipe') : $i . ' ' . __('stars', 'wp-ultimate-recipe');
    ?>
                    </option>
                    <?php 
}
?>
                </select>
            </td>
        </tr>
        <tr class="recipe-general-form-servings">
            <td class="recipe-general-form-label"><label for="recipe_servings"><?php 
_e('Servings', 'wp-ultimate-recipe');