Add Schema ItemType to a Column

add_filter('fl_builder_column_attributes', function ($attrs, $col) {
    if ('cc-sidebar-home' == $col->settings->id) {
        
        $attrs['itemtype'] = 'http://schema.org/WPSideBar';
    }
    return $attrs;
  }, 10, 2);
2 Likes