Skip to content

Instantly share code, notes, and snippets.

@indikatordesign
Last active December 15, 2018 13:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save indikatordesign/87786824077c6b341257b54c0906724c to your computer and use it in GitHub Desktop.
Save indikatordesign/87786824077c6b341257b54c0906724c to your computer and use it in GitHub Desktop.
[WordPress 5(+) - Remove Builder Info]
<?php
if ( is_admin() ) :
add_action( 'current_screen', function( $hook )
{
if ( 'edit' == $hook->base ) :
add_action( 'admin_print_styles', function()
{
echo '<style>.column-title.page-title strong{font-size:0}</style>';
});
endif;
});
endif;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment