For some reason the idea that I blog belongs to a company has not made it to WordPress. It is very common that a website built on WordPress will have the company name, address, and other expected contact information. Yet, setting up that information cannot be done without hard coding in in your theme. We address that issue by adding a extra option under the Settings menu to allow you enter regular company’s contact information, and expose that information using the {{company}} binder.

TODO:
/**
* Smarty plugin
* -------------------------------------------------------------
* File: function.company.php
* Type: function
* Name: company
* Purpose: includes template content
* -------------------------------------------------------------
*
* @param {array} $params
* $params['name'] Name of the part (e.g. content-main.html)
* $params['assign_to'] Variable withing the template engine to which the content has to be assinged.
*
*
* REFERENCES:
*
* http://www.smarty.net/docs/en/plugins.functions.tpl
*
*
* #EXAMPLE:
*
* {{company assign_to="company"}}
*/