How do I hook into the post edit preview to manipulate the content before it is displayed? I need to pass the content through a function first before it renders in the preview.
I figure out how to do it with the comment/discussion preview, but not with the edit preview popup. This is how you can do it with the comment/discussion preview:
// Start a Discussion preview public function PostController_BeforeDiscussionRender_Handler($Sender) {
}
// Comment preview public function PostController_BeforeCommentRender_Handler($Sender) {
Comments