Skip to content

Commit

Permalink
Increase priority on customize_register hook so that we catch postmeta.
Browse files Browse the repository at this point in the history
  • Loading branch information
lgedeon committed Aug 19, 2016
1 parent fdea693 commit b05759b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php/class-customize-concurrency.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public function __construct( Plugin $plugin ) {
add_action( 'customize_preview_init', array( $this, 'customize_preview_init' ) );
add_action( 'customize_controls_print_footer_scripts', array( $this, 'customize_controls_print_footer_scripts' ) );
add_filter( 'wp_insert_post_data', array( $this, 'preserve_inserted_post_name' ), 10, 2 );
add_action( 'customize_register', array( $this, 'customize_register' ) );
add_action( 'customize_register', array( $this, 'customize_register' ), 30 );
add_action( 'customize_save_after', array( $this, 'customize_save_after' ) );
add_action( 'customize_save_response', array( $this, 'customize_save_response' ) );
}
Expand Down

0 comments on commit b05759b

Please sign in to comment.