I set the option in wp-o-matic to Post Title Links to Source and it doesn't actually do it. Any ideas?
I set the option in wp-o-matic to Post Title Links to Source and it doesn't actually do it. Any ideas?
Search wpomatic.php for add_action('the_permalink', array(&$this, 'filterPermalink')); and change it to add_filter('the_permalink', array(&$this, 'filterPermalink'));
Chris
Actually, add_action runs add_filter in WPMU trunk wp-includes/plugin.php:
271 function add_action($tag, $function_to_add, $priority = 10, $accepted_args = 1) {
272 return add_filter($tag, $function_to_add, $priority, $accepted_args);
273 }
lines 324-326 for WordPress trunk.
So that won't do anything.
It's a pretty straight forward action, but it does depend on being inside "The Loop".
This topic has been closed to new replies.