This is a function listed in the section calling that stuff.
function iea_contributor_data( $type = 'authored-by' ) {
$connected = new WP_Query(
array(
'relationship' => array(
'id' => esc_attr( $type ),
'from' => get_the_ID(), // You can pass object ID or full object
),
'posts_per_page' => 1,
)
);
return $connected;
}
Should I be limiting it somehow? This should really only run on Posts.