WordPressにおいて個別投稿(Single)の上や下に任意の文字やプラグインの表示などをさせるため、function.phpの記述で何とかする方法です。
function add_post_content($content) {
if(is_single()){
if(function_exists('the_ratings')) {
$bottom = '
'.the_ratings().'
';
}
$content .= $bottom;
}
return $content;
}
add_filter('the_content', 'add_post_content');
ヌードにも飾り付けが欲しいでしょ