Skip to:
Content

BuddyPress.org

Changes between Initial Version and Version 1 of Ticket #7847, comment 5


Ignore:
Timestamp:
05/22/2018 02:23:05 AM (7 years ago)
Author:
pareshradadiya
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #7847, comment 5

    initial v1  
    1 I confirm `bp_after_message_content` callback function get called. I was returning output instead of echoing it on a page in my old test.
     1I confirm `bp_after_message_content` callback function get called. I was returning output instead of echoing it on a page in my old test. However, I cannot fetch message meta inside from callback.
     2
     3{{{#!php
     4$message_id = (int) bp_get_the_thread_message_id();
     5$meta = bp_messages_get_meta( $message_id, 'message_meta' );
     6}}}