Konu
wordpress yorumları yeniden eskiye sıralama Movifox teması
27-04-2019, 14:06:14
#2
furkantunahan
Üyeliği durduruldu
functions.php dosyasında uygun yere, aşağıdaki kodu eklenmesi yeterli.
function reverse_comments($comments,$id) {
$comments = array_reverse($comments);
return $comments;
}
add_filter('comments_array','reverse_comments',10, 2);