Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi !
    Unfortunately, the author URL is (most of the time) not provided within the feed itself.
    So the easiest way for you to achieve what you want is to hide it with the following function :

    function bweb_feedzy_meta_hide_author($metaArgs, $feedURL){
        $metaArgs['author'] = false;
        return $metaArgs;
    }
    add_filter('feedzy_meta_args', 'bweb_feedzy_meta_hide_author', 9, 2);

    You’ll find more details about it at the Handle meta feed section of the hooks documentation.

    Cheers

    Thread Starter AZFarmgirl

    (@azfarmgirl)

    Hi Brice –

    Thanks for the quick response! But I need to show the author name, so I’d rather disable the link. Would you mind providing the most recent function/hook?

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Need a correct author link or no link’ is closed to new replies.