Changes between Initial Version and Version 2 of Ticket #23265
- Timestamp:
- 01/22/2013 03:36:04 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #23265 – Description
initial v2 2 2 3 3 {{{ 4 add_ action( 'the_content', array( 'My_Plugin_Main_Class', 'the_content' ) );4 add_filter( 'the_content', array( 'My_Plugin_Main_Class', 'the_content' ) ); 5 5 6 add_ action( 'the_content', 'My_Plugin_Main_Class::the_content' );6 add_filter( 'the_content', 'My_Plugin_Main_Class::the_content' ); 7 7 8 add_ action( 'the_content', '\\My_Plugin_Main_Class::the_content' );8 add_filter( 'the_content', '\\My_Plugin_Main_Class::the_content' ); 9 9 }}} 10 10 … … 12 12 13 13 It would be nice if `_wp_filter_build_unique_id()` converted all these variations to a canonical representation. 14 15 Sprung out of #23259