Info
- 3 posts
- 2 voices
- Started 3 years ago by Thion
- Latest reply from _ck_
- This topic is not resolved
Topic action hook
-
- Posted 3 years ago #
I was looking, but can't find - so I'm still looking for hook, something like this:
add_action('profile_edited', 'update_user_socialize');Above hook is used to add usermeta when editing profile - I'm looking for something that would add additional topicmeta when posting new topic - the following is not working:
add_action('post_topic', 'post_new_job');So is there any hook like this?
-
- Posted 3 years ago #
All right, let's try different question - I want to add additional informations to topicmeta when posting new topic - how can I achieve this? :)
Or at least point me to a plugin that is doing something like this so I could learn there...
-
- Posted 3 years ago #
add_action('topicmeta','hello_world'); function hello_world() {echo "<li>hello world</li>";} -
You must log in to post.