Solutions
-
Milli05's post in Hooking up Page and Category specific widget area was marked as the answerI think you could do it with one if statement:
if(is_page('59') || is_category('11') || is_category('12') || is_category('13')): genesis_widget_area ('blog-submenu', array ( 'before' => '<div class="wrap"><div class="blog-submenu widget-area">', 'after' => '</div></div>', ) ); endif; || means or .
As I can see you would like to place the same widget area if the page id is 59 or the category id is 11,12 os 13.