Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2594886
How to remove the author's URL from an blog post
Closed

Comments

  • nsaurin started the conversation

    Hello,

    I would like to remove author links from an article. The links that are on the name of whoever wrote the blog post, above and below the blog post. How to remove or modify this link?

    FYI I'm not talking about the link in the comment authors.

    thank you so much

    Nicolas

  •  2,699
    PenciDesign replied

    Hi,

    You can do that by install & activate plugin  Code Snippets.

    After that, go to Dashboard > Snippets > Add New > enter a title and put the code below on the "Code" box:

    add_filter( 'author_link', 'penci_modify_author_link', 10, 1 );
    function penci_modify_author_link( $link ) {
    $link = '#';
    return $link;
    }

    like on this image.

    And save it and check it again. The author URL on the code will be change to your homepage URL.

    Best Regards,

    PenciDesign

  • nsaurin replied

    Thank you ! I replaced the home page with my about page. it works very well thank you