-
-
Save gschoppe/ce88a7821764ef11803a5c64350078b6 to your computer and use it in GitHub Desktop.
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
// moved to https://wordpress.org/plugins/classic-editor-addon/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @gschoppe Greg,
I came to realise that the filter of the
plugin_action_links
with theclassic_editor_addon_remove_settings_link
function does not work.To make it work, the filter needs to be replaced with an action:
add_action( 'plugins_loaded', 'classic_editor_addon_remove_settings_link' );
And the function itself can be simplified by:
You can see, the changes also in my original gist (updated of course with your changes).
What do you think about releasing this together as a plugin in the WP Plugin Repo?