Changeset 6015 for branches/2.5/includes/core/filters.php
- Timestamp:
- 04/29/2016 05:01:03 PM (10 years ago)
- File:
-
- 1 edited
-
branches/2.5/includes/core/filters.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/2.5/includes/core/filters.php
r5370 r6015 140 140 // Run filters on reply content 141 141 add_filter( 'bbp_get_reply_content', 'bbp_make_clickable', 4 ); 142 add_filter( 'bbp_get_reply_content', 'bbp_mention_filter', 5 );143 142 add_filter( 'bbp_get_reply_content', 'wptexturize', 6 ); 144 143 add_filter( 'bbp_get_reply_content', 'convert_chars', 8 ); … … 151 150 // Run filters on topic content 152 151 add_filter( 'bbp_get_topic_content', 'bbp_make_clickable', 4 ); 153 add_filter( 'bbp_get_topic_content', 'bbp_mention_filter', 5 );154 152 add_filter( 'bbp_get_topic_content', 'wptexturize', 6 ); 155 153 add_filter( 'bbp_get_topic_content', 'convert_chars', 8 ); … … 244 242 add_filter( 'bbp_map_meta_caps', 'bbp_map_topic_tag_meta_caps', 10, 4 ); // Topic tags 245 243 244 // Clickables 245 add_filter( 'bbp_make_clickable', 'bbp_make_urls_clickable', 2 ); // https://bbpress.org 246 add_filter( 'bbp_make_clickable', 'bbp_make_ftps_clickable', 4 ); // ftps://bbpress.org 247 add_filter( 'bbp_make_clickable', 'bbp_make_emails_clickable', 6 ); // jjj@bbpress.org 248 add_filter( 'bbp_make_clickable', 'bbp_make_mentions_clickable', 8 ); // @jjj 249 246 250 /** Deprecated ****************************************************************/ 247 251
Note: See TracChangeset
for help on using the changeset viewer.