web/wp-content/themes/thematic/library/legacy/deprecated.php
author ymh
Fri, 12 Mar 2010 13:29:04 +0000
changeset 1 0d28b7c10758
permissions -rw-r--r--
First commit

<?php

/**
 * Function for handling the bloginfo / get_bloginfo data using our own 'cache'.
 * move the content div inside of template files By taking the content div out of 
 *
 * We removed the functionality because it will not run on all systems. The system used
 * a fallback, but we could not guarantee that the fallback would meet every possible
 * error condition.
 *
 * @since 0.9.6
 * @deprecated 0.6.1
 */

function thm_bloginfo($command = '', $echo = FALSE) {

    if ($echo) {
	   bloginfo($command);
    } else {
        return get_bloginfo($command);
    }
} 

?>