diff --git src/wp-includes/class-wp-customize-manager.php src/wp-includes/class-wp-customize-manager.php
index 6e8faf2..467164b 100644
|
|
final class WP_Customize_Manager { |
1232 | 1232 | wp_enqueue_script( 'customize-preview' ); |
1233 | 1233 | add_action( 'wp_head', array( $this, 'customize_preview_loading_style' ) ); |
1234 | 1234 | add_action( 'wp_footer', array( $this, 'customize_preview_settings' ), 20 ); |
| 1235 | add_filter( 'get_edit_post_link', '__return_empty_string' ); |
1235 | 1236 | |
1236 | 1237 | /** |
1237 | 1238 | * Fires once the Customizer preview has initialized and JavaScript |