A quick look at the code & a google search reveals that the plugin is using a hook which has been removed.
name_same_pre to ${field_no_prefix}_save_pre
In the code its
add_filter('name_save_pre', 'seo_slugs', 0);
How do I change it?
A quick look at the code & a google search reveals that the plugin is using a hook which has been removed.
name_same_pre to ${field_no_prefix}_save_pre
In the code its
add_filter('name_save_pre', 'seo_slugs', 0);
How do I change it?
I just came across this issue accidentally. I'm trying to work out exactly how to use the ${field_no_prefix}_save_pre filter. http://adambrown.info/p/wp_hooks seems to indicate that the hooks it's replaced are deprecated, but I'm not clear how the new one's used.
SEO Slugs seems to still be doing its job, so I guess name_save_pre is deprecated but still working?
You must log in to post.