Html (links) in bbpress excerpts?
-
I would like to use html in topics that is then reflected in excerpts. There is a plug-in for general WP called Advanced Excerpt that enables this. But I am wondering if it can be done for bbpress excerpts.
Details:
In a forum (https://devgo.jeffbelkora.com/collections/articles/resource-list/) I am using some code from https://premium.wpmudev.org/forums/topic/bbpress-topic-excerpts, namely:
function add_topic_excerpt() {
echo “<p>”.bbp_get_topic_excerpt( $topic_id, 200).”</p>”;
}
add_action(‘bbp_theme_after_topic_title’, ‘add_topic_excerpt’ );Unfortunately, the bbpress excerpt does not show active links (html) from the content as I desire.
Any ideas?
- You must be logged in to reply to this topic.