How do I rename the “All” Category in the masonry gallery?
Hi mcraig77!
Please add following code to Functions.php file in Appearance > Editor and adjust as needed
add_filter('avf_masonry_sort_first_label','new_first_label');
function new_first_label() {
$first_item_name = "New All";
return $first_item_name;
}
Regards,
Yigit
Thanks!