Tagged Questions
1
vote
1answer
286 views
Access bloginfo, get_option, and plugins_url from a non-core php file
I am creating a plugin that has a php file in the plugin directory which is accessed directly via a custom rewrite url.
I need this file to be able to use the three functions mentioned in the title.
...
5
votes
4answers
2k views
What is difference between get_bloginfo('url') and get_site_url()?
I am developing a plugin.
I want to know difference between
get_bloginfo('url');
and
get_site_url();
I got same output, then what's the difference?