• Resolved andym33

    (@andym33)


    I would like to find out how to use site_url or get_site_url instead of using http://mysite.com, can someone please rewrite these following examples so I know how this can be done.

    function my_image(){
    return 'http://mysite.com/myfolder/image.jpg';
    }
    function my_favicon(){
    	echo '<link rel="shortcut icon" href="http://mysite.com/myfolder/image.ico" />';
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • catacaustic

    (@catacaustic)

    That is pretty easy to do. Something like this:

    function my_image(){
        return get_site_url() . '/myfolder/image.jpg';
    }
    Thread Starter andym33

    (@andym33)

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘using site_url’ is closed to new replies.