I am developing a wordpress plugin.

In this plugin I am trying to get the hostname of the server.

Is this possible?

I see tags/filters like:

  • get_home_url
  • get_site_url
  • home_url
  • get_page_link

But they do not seem to work in plugins.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

I would just use the PHP $_SERVER predefined variable rather than worry about whether a WP function is available or not.

echo $_SERVER['SERVER_NAME'];

will give you something like: www.example.com

http://www.php.net/manual/en/reserved.variables.server.php

link|improve this answer
exactly what i was looking for. Its so difficult to find what your looking for in wordpress. – Mark Mar 10 '11 at 12:55
feedback

I think you could use bloginfo('url'); wich gets the baseurl or are you looking for something else

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.