WP-PostRatingsインストール後、ユーザー評価のボタンを表示する方法(課題1 方法①)

「外観」から「テーマ」の編集に入り、human-exを選択後(humanを選んでしまい失敗してしまった・・)、右側のメニューのsingle.phpを選択し、

<?php while ( have_posts() ): the_post(); ?>

の下に

<?php if(function_exists('the_ratings')) { the_ratings(); } ?>

を挿入します。