DOM Ready 関数の外にあるので、次のように変更します。
$(function(){
$(".articleBox").click(function(){
window.location=$(this).find("a").attr("href");
return false;
});
<!-- div mouseover change h2 color -->
$('.articleBox').mouseover(function(){
var color = $(this).find("a, .text-h2").css("color");
$(this).find("a, .text-h2").css("color", "rgba(255, 156, 0, 0.8)");
$(this).mouseout(function(){
$(this).find("a, .text-h2").css("color", "rgb(51, 51, 51)");
});
});
});
<!-- non image div change background color -->
$(".post-index:has(.wp-post-image)").css("background", "#000");
に
$(function(){
$(".articleBox").click(function(){
window.location=$(this).find("a").attr("href");
return false;
});
<!-- div mouseover change h2 color -->
$('.articleBox').mouseover(function(){
var color = $(this).find("a, .text-h2").css("color");
$(this).find("a, .text-h2").css("color", "rgba(255, 156, 0, 0.8)");
$(this).mouseout(function(){
$(this).find("a, .text-h2").css("color", "rgb(51, 51, 51)");
});
});
<!-- non image div change background color -->
$(".post-index:has(.wp-post-image)").css("background", "#000");
});