Changeset 2815
- Timestamp:
- 03/25/2016 06:27:08 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/formatting.php
r2814 r2815 30 30 add_filter( 'the_excerpt', array( __CLASS__, 'autolink_references' ), 11 ); 31 31 add_filter( 'the_content', array( __CLASS__, 'autolink_references' ), 11 ); 32 add_filter( 'devhub-format-description', array( __CLASS__, 'autolink_references' ) ); 32 33 33 34 add_action( 'the_content', array( __CLASS__, 'fix_unintended_markdown' ) ); … … 237 238 $text = self::make_doclink_clickable( $text ); 238 239 239 return $text;240 return apply_filters( 'devhub-format-description', $text ); 240 241 } 241 242
Note: See TracChangeset
for help on using the changeset viewer.