誰かが以下を置き換える理由を説明してもらえますか
$('.post_title a').hover(function () {
$(this).parent().parent().parent().parent().find(".post_footer").toggleClass('footer_border')
});
と
$('.post_title a').hover(function () {
$(this).closest(".post_footer").toggleClass('footer_border')
});
動作しませんか??