Change Header Link

  • Anonymous

    #6458

    Hey All,

    First off, I searched through the forum but couldn’t find how to answer this admittedly newb question.

    The site in question is http://www.mortgagemoneyman.com

    I would like to change the link on the header to direct to a different page on the site but can’t seem to figure out in WordPress where to do so. I know how to edit the scripting to do this, but I do not have FTP access to the site.

    Everything I found on the blog pointed, logically so, to the Header.php edit section, however I can’t find where/what in that to change.

    Any help would be greatly appreciated and I will sing you a song and send it to you on youtube. (and I am a terrible singer)

    THANKS!

    Mod

    Kenneth John Odle

    #34417

    Did you see this

    https://forum.graphene-theme.com/graphene-support/add-external-link-to-header-image#post-27403

    ?

    I’ve been playing around with it too long, as I’m not good with filters, and I am now even more behind in my work. If anyone has a solution to show how to use this filter hook, I am interested, as well. Thanks

    Admin

    Syahir Hakim

    #34418

    Throw this into your child theme’s functions.php file:

    function graphene_custom_header_link( $link ){
    return 'http://www.cust.om/link/here/';
    }
    add_filter( 'graphene_header_link', 'graphene_custom_header_link' );

    Though that might be easier said than done if you don’t have FTP access to the site.

    Mod

    Kenneth John Odle

    #34419

    Thanks, Syahir.

    I was close! Now I know how to handle filters.

Viewing 4 posts - 1 through 4 (of 4 total)

  • You must be logged in to reply to this topic.