wp_title filter problem
-
Hello,
I need to change wp title with plugin, but I have problem with using wp_title filter in WPMU installation.
I have this simple code:
function my_title_filter($oldtitle) { return "added by plugin | $oldtitle"; } add_filter('wp_title', 'my_title_filter', 500);
This code works perfect in normal WP installation, but not in WPMU.
Is there some differences between WPMU and standard WP installation? Maybe I should use some other filter in WPMU for the same thing?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘wp_title filter problem’ is closed to new replies.