I'm writing a plugin which will help administrate a question-answer database. 'Candidate' questions are stored in a custom DB, and I'm working on a function by which a user can promote a db question to a fully fledged knowledgebase article (custom post type).

I'd like to populate the content field on post-new.php based on the content of my $_POST data, so a user can click a 'promote' link associated with a candidate and have the information already there.

What's the appropriate filter hook to use for this, or is there a better way?

*Edited title for clarity

link|improve this question
What have you tried so far? – hakre Jun 21 '11 at 20:16
I'm kind of looking at the edit_post_{$field} filter, but I'm not really sure how to use it. adambrown.info/p/wp_hooks/hook/edit_post_%7B$field%7D – cynicaloptimist Jun 21 '11 at 20:19
I don't have enough rep to answer my own question, but I found that I was looking for the 'the_editor_content' filter hook. – cynicaloptimist Jun 21 '11 at 21:01
+1 so you come nearer to that point ;) Yes that hook sounds good to me. – hakre Jun 21 '11 at 21:05
feedback

2 Answers

Not exactly sure I have grasped your point, but if the difference between an Q and A entry and a KB entry is more than just a flag in the table, eg it is a largely a copy operation from one table to another: Couldnt you simply use Mysqls INSERT INTO ability? http://dev.mysql.com/doc/refman/5.5/en/insert-select.html which is triggered by the user posting back just the id of the Q and A article?

link|improve this answer
This isn't really a database structure question, just a wordpress hook question. I want to insert some arbitrary data into a field on post-new.php – cynicaloptimist Jun 21 '11 at 19:58
doh, sorry - didn't notice the tags you set on the question - not a WP fan I'm afraid - I shan't remove the reply for fear of busting something. – Cups Jun 21 '11 at 20:00
Thanks for your input, though :-) – cynicaloptimist Jun 21 '11 at 20:04
feedback
up vote 0 down vote accepted

It turns out the filter hook I was looking for is the_editor_content, which will (as its name suggests) let me manipulate the content that gets placed in the editor.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.