Filtering Content
-
So I’ve messed around and managed to come up with a plugin to include clickable, customed, smilies (by merging a plugin of Otto’s and one of Alex Kings). The catch is that the trick I used to filter the_content and the_excerpt and comment_text isn’t working on the wire.
I suspect it’s a case of not knowing the right filters.
I want to filter these:
bp_the_topic_post_content
(for group forum topics)bp_wire_post_content
(for wire posts)I’ve tried this:
add_filter('bp_wire_post_content', 'my_smilies_fixurl', 10);
add_filter('bp_the_topic_post_content', 'my_smilies_fixurl', 30);with a lot of variations on 10, 30, etc, but the images never filter the way they do for the_content etc. Any ideas?
- The topic ‘Filtering Content’ is closed to new replies.