Hi Jack,
You can find the plugin’s hooks documentation and example here.
With the feedzy_meta_output hook, you can do something like this:
function bweb_feedzy_author_to_blog_matches( $matches ) {
$domain = parse_url( $matches[1] );
return '<a href="' . $matches[1] . '" target="_blank" rel="nofollow" title="' . $domain["host"] . '">' . $domain["host"] . '</a>';
}
function bweb_feedzy_author_to_blog( $content, $feedURL ) {
if( 'https://b-website.com/feed' == $feedURL ) {
$pattern= '/<a.*href=\"(https?:\/\/.*)\".*>(.*)<\/a>/iU';
$content= preg_replace_callback( $pattern, 'bweb_feedzy_author_to_blog_matches', $content );
}
return $content;
}
add_filter( 'feedzy_meta_output', 'bweb_feedzy_author_to_blog', 9, 2 );
By the way, you have to replace https://b-website.com/feed by the right feed’s URL or simply remove this condition.
Cheers