Sunday, January 13, 2013

Get the blog information from your wordpress site

We have a lot of ways to get the blog information from our wordpress site but below are the 2 functions that we commonly use to get it. (1) bloginfo() and (2) get_blogingo().

BLOGINFO() - This function will display the information about your blog, this is mostly gathered from the information you supplied in your blog settings. It can be use within your wordpress template. This function always print the result to the browser. If you need to get the actual value, you should use get_bloginfo() below.

Usage: bloginfo('<parameter>'); 
Parameters:
  • name - the title set for the blog.
  • description - the description set for the blog.
  • admin_email - the email address of administrator of the blog.
  • url - the url of the blog.
  • wpurl - the url of the wordpress blog. this is usually the same as "url" parameter.
  • stylesheet_directory - the directory of the stylesheet of the blog. this is usually the same as the theme directory that the blog was activated.
  • stylesheet_url - the url of the stylesheet of the blog. depends also on the activated theme that the blog was activated.
  • template_directory - the theme directory that the blog was activated.
  • template_url - the url of the theme directory that the blog was activated.
  • atom_url - the url of the atom feed.
  • rss2_url - the url of the rss feed. this is the latest version of rss feed. example: http://example.com/myblog/feed
  • rss_url - the url of the rss feed. this is the old version of rss feed. example: http://example.com/myblog/feed/rss
  • pingback_url - the url of xmlrpc. example: http://example.com/myblog/wp/xmlrpc.php
  • rdf_url - the url of rdf feed. example: http://example.com/myblog/feed/rdf
  • comments_atom_url - the url o
  • f comments atom feed. example: http://example.com/myblog/comments/feed/atom
  • comments_rss2_url - the url of comments rss feed. example: http://example.com/myblog/comments/feed
  • charset - the meta tag character set of your blog. this is usually in UTF-8 to support most of the characters.
  • html_type - the html type of your blog. usually in "text/html" type.
  • language - the main language of your blog. by default set to "en-US".
  • version - the version of your wordpress blog.
  • text_direction - don't know about this but this is usually set to "ltr". 

GET_BLOGINFO() - This function will return the information about the blog, the information here are mostly gathered from the information you supplied in your blog settings. It can be use within your wordpress template. This function will only return the results and if you need to print the result you need to either echo the result or use bloginfo() function above.

Usage: echo get_bloginfo('<parameter>'); or $info = get_bloginfo('<parameter>'); 

Parameters: (parameters are the same as above)


Hope this helps. Happy coding with wordpress!!

No comments:

Post a Comment

Leadership 101


  • Leadership demands sacrifices for the near-term to receive lasting benefits. the longer we wait to make sacrifices, the harder they become. Successful people make important decisions early in their life, then manage those decisions the rest of their lives.
  • Growth does not happen by chance. If you want to be sure to grow, you need a plan something strategic, specific, and scheduled. it's a discipline that would need incredible determination from us.
  • Success comes by going the extra mile, working the extra hours, and investing the extra time. The same is true for us. If we want to get to excel in any segment of life, a little extra effort can help. Our efforts can go a long way if we only work a little smarter, listen a little better, push a little harder, and persevere a little longer.
  • Making a difference in your work is not about productivity; it's about people. When you focus on others and connect with them, you can work together to accomplish great things.
  • Envision a goal you'd like to reach. Make it big enough to scare you a little. Now write down a plan for moving toward it. Create mini-goals within the big goal, to set yourself up for continual progress. And include some risks, too. Set yourself up for success.
  • Leaders build margins, not image. A leader may be forced to take unpopular stands for the good of the company. Popularity isn't bad, but decisions made solely on the basis of popular opinion can be devastating. So take courage and make the right though sometimes painful choices.