The bloginfo tag has no wiki summary.
0
votes
3answers
623 views
How to use tinyMCE for user “biographical info” without messing with any core file?
I noticed when you typein the user's “biographical info” on the profile, it shows up in one page! Looks really terrible. So:
Is there a way to use tinyMCE or other solution for user “biographical ...
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?
2
votes
1answer
787 views
get_template_directory() vs bloginfo( 'template_directory' ) vs TEMPLATEPATH
I was reading this article: Common WordPress Development Mistakes and How to Fix Them, and in it, they author says:
Getting the theme location: If you are using TEMPLATEPATH or bloginfo(
...