Created
September 5, 2025 08:54
-
-
Save damiencarbery/b81adba2255435aabbc6e5bc48fd7596 to your computer and use it in GitHub Desktop.
Highlight Block Editor Links - Style the links in block editor to make them easy to find - while fixing broken links. https://www.damiencarbery.com/2025/09/highlight-block-editor-links/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .editor-styles-wrapper .wp-block-paragraph a[href^="https://eur04.safelinks.protection.outlook.com"] | |
| { background-color: black; color: white; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| Plugin Name: Highlight Block Editor Links | |
| Plugin URI: https://www.damiencarbery.com/2025/09/highlight-block-editor-links/ | |
| Description: Style the links in block editor to make them easy to find - while fixing broken links. | |
| Author: Damien Carbery | |
| Version: 0.1.20250905 | |
| */ | |
| defined( 'ABSPATH' ) || exit; | |
| add_action( 'admin_init', 'hbel_add_editor_style' ); | |
| function hbel_add_editor_style() { | |
| add_editor_style( plugin_dir_url( __FILE__ ) . 'style-block-editor-links.css' ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment