mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
15 lines
297 B
Text
15 lines
297 B
Text
add_action('admin_head', 'wp_tweak_gutenberg_ui_welcome_tips');
|
|
|
|
/**
|
|
* How To Turn Off Gutenberg Welcome Tips in WordPress
|
|
*/
|
|
public static function wp_tweak_gutenberg_ui_welcome_tips() {
|
|
?>
|
|
<style>
|
|
*/
|
|
.wp-admin .components-popover.nux-dot-tip {
|
|
display: none !important;
|
|
}
|
|
</style>
|
|
<?php
|
|
}
|