1
|
1 |
<?php |
|
2 |
|
|
3 |
/** |
|
4 |
* Function for handling the bloginfo / get_bloginfo data using our own 'cache'. |
|
5 |
* move the content div inside of template files By taking the content div out of |
|
6 |
* |
|
7 |
* We removed the functionality because it will not run on all systems. The system used |
|
8 |
* a fallback, but we could not guarantee that the fallback would meet every possible |
|
9 |
* error condition. |
|
10 |
* |
|
11 |
* @since 0.9.6 |
|
12 |
* @deprecated 0.6.1 |
|
13 |
*/ |
|
14 |
|
|
15 |
function thm_bloginfo($command = '', $echo = FALSE) { |
|
16 |
|
|
17 |
if ($echo) { |
|
18 |
bloginfo($command); |
|
19 |
} else { |
|
20 |
return get_bloginfo($command); |
|
21 |
} |
|
22 |
} |
|
23 |
|
|
24 |
?> |