I may have a solution to the trackback issue with WP2.0.
Pings will work if you execute execute_all_pings()
/wp-admin/execute-pings.php
It is obviously not being called in the script somewhere.
Now to figure out where to place it.
I am trying this at the end of post.php
Change:
break;
} // end switch
/* */
include('admin-footer.php');
?>
to this:
break;
} // end switch
/* */
require_once('execute-pings.php');
execute_all_pings();
include('admin-footer.php');
?>
It seems to add some text at the end of post.php but I can live with that.
*edit*
According to my page the ping went out. 🙂
After more testing it does not work if you include a pingback. So this fixes the trackback but breaks pingback. 😡
1 comment
Comments are closed.