Hi,
I am trying to write a simple plugin to wordpress but i have a problem. this is the plugin:
function replace_css_php($text){ return str_replace(".css",".php",$text); } add_filter('bloginfo', 'replace_css_php', 1, 1); add_filter('bloginfo_url', 'replace_css_php', 1, 2);
the problems is that other plugins (not my plugins), added text to the header after me. it means that only some of the text going through replace_css_php and not all of it.
(the function replace_css_php is just a simple example, not in real life)
any idea?
Thanks