How to get the title of the topic from the ID of the reply.
-
Please tell me the code to get the title of the topic from the ID of the reply.
I wrote the following code, but it will not work on loading with Ajax.
Specifically,
bbp_get_reply_topic_id
does not seem to work.What am I gonna to do?
function my_echo_topicTitle_from_replyId( $replyId ) { $topicId = bbp_get_reply_topic_id( $replyId ); $page = get_page( $topicId ); $slug = $page->post_name; $topicTitle = get_the_title( $topicId ); echo '<div class="topic_title"><a href="http://example.com/topic/'.$slug.'">'.$topicTitle.'</a></div>'; }
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.