Changeset 1304 for sites/trunk/wordcamp.org/public_html/wp-content/plugins/multi-event-sponsors/classes/mes-sponsorship-level.php
- Timestamp:
- 02/24/2015 08:05:37 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/multi-event-sponsors/classes/mes-sponsorship-level.php
r1302 r1304 15 15 */ 16 16 public function __construct() { 17 add_action( 'init', array( $this, 'create_post_type' ) ); 18 add_action( 'admin_init', array( $this, 'add_meta_boxes' ) ); 19 add_action( 'save_post', array( $this, 'save_post' ), 10, 2 ); 20 add_filter( 'the_content', array( $this, 'add_header_footer_text' ) ); 21 22 // todo readjust whitepsace after this commit 17 add_action( 'init', array( $this, 'create_post_type' ) ); 18 add_action( 'admin_init', array( $this, 'add_meta_boxes' ) ); 19 add_action( 'save_post', array( $this, 'save_post' ), 10, 2 ); 20 add_filter( 'the_content', array( $this, 'add_header_footer_text' ) ); 23 21 } 24 22 … … 140 138 * 141 139 * @param string $content 140 * 142 141 * @return string 143 142 */
Note: See TracChangeset
for help on using the changeset viewer.