• Hi guys,

    I’m trying to insert a <“a”> tag customizer, so that the site slogan becomes a link that brings to the blog.

    it’s possible ?

    thank you in advance

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi,
    It is possible.
    Please give the link to your site.
    By slogan, do you mean the site description or tagline?

    Thread Starter lonix

    (@lonix)

    hi,
    at the moment the site is in localhost.
    I still mean the description of the site, the one that is shown at the top right with the theme customizr.

    Hi,
    Try adding this to your child theme’s functions.php. Change the blog url.

    add_filter('tc_tagline_text','my_tagline');
    function my_tagline($content){
    return '<a href="http://YOURBLOGURL.com/">'.$content.'</a>'; //Change
    }
    Thread Starter lonix

    (@lonix)

    it’s work

    thx thx thx

    Hi lonix,
    Glad that it works.
    Would you mind marking this post as resolved?

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Slogan Customizr’ is closed to new replies.