http://kyasper.com/jquery-tips/
ヘッド内の
<?php wp_head(); ?>のすぐ次に以下をコピペ
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript">
$(function(){
$('a[href^=#]').click(function(){
var speed = 500;
var href= $(this).attr("href");
var target = $(href == "#" || href == "" ? 'html' : href);
var position = target.offset().top;
$("html, body").animate({scrollTop:position}, speed, "swing");
return false;
});
});
</script>
あとは任意に以下
<a href="#bottom">下へスムース!</a>
<a name="bottom" id="bottom">aaaa</a>