how to change permalink anchor text 'link'

Hello I have just started using the Q&A plugin and noticed each question has a permalink to its page and the anchor text is ‘link’ for all of them.

How do I change ‘link’ to have the post title as the anchor text instead?

Thanks

  • DavidM
    • DEV MAN’s Mascot

    Hi moodcharger,

    As there’s not an option for that in the plugin interface you’d have to edit the plugin to achieve that. Fortunately, this one’s rather simple, you can simply replace line 160 of qa/core/template-tags.php with the following:

    $links['single'] = get_the_title( $id);

    Cheers,

    David