Quote from
qualmy91 on May 30, 2021, 7:00 am
Hey @mattbodell,
- Is there a hook to find the post that was created in the forum by Wordpress upon publication?
You can use the follwoing hook to get all new topics and filter the automatic posted from there:
asgarosforum_after_add_topic_submit
2. Is there a way to only make the auto generated post only use the first say paragraph etc etc.
there is a Filter to modify the content of the automatic post:
$post_content = apply_filters('asgarosforum_filter_automatic_topic_content', $post_object->post_content, $post_object);
Hey @mattbodell,
- Is there a hook to find the post that was created in the forum by Wordpress upon publication?
You can use the follwoing hook to get all new topics and filter the automatic posted from there:
asgarosforum_after_add_topic_submit
2. Is there a way to only make the auto generated post only use the first say paragraph etc etc.
there is a Filter to modify the content of the automatic post:
$post_content = apply_filters('asgarosforum_filter_automatic_topic_content', $post_object->post_content, $post_object);