#4740 closed enhancement (fixed)
New action for wp_update_comment_count()
| Reported by: | mdawaffe | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | 2.3 |
| Component: | Administration | Version: | 2.2.2 |
| Severity: | normal | Keywords: | has-patch |
| Cc: | Focuses: |
Description
wp_update_comment_count() calls the edit_post action (with different parameters than does the wp_insert_post() function), but this action doesn't receive information on how and if the count changed.
Knowing this information would be useful to advanced caching systems, plugins that do fancy things with plugins/pings, and surely a buch of stuff I can't think of.
I propose a new hook:
do_action('wp_update_comment_count', $post_id, $new_count, $old_count);
Attached makes that happen and gives the edi_post hook the same parameters as it has in wp_insert_post().
Attachments (1)
Change History (3)
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
(In [5869]) wp_update_comment_count hook from mdawaffe. fixes #4740