Skip to content

Instantly share code, notes, and snippets.

@oguzhanozcelik
Created September 17, 2018 18:21
Show Gist options
  • Save oguzhanozcelik/c436d9be1af8b5f086e686515a40f03a to your computer and use it in GitHub Desktop.
Save oguzhanozcelik/c436d9be1af8b5f086e686515a40f03a to your computer and use it in GitHub Desktop.
Wordpress Remove Admin Bar
Wordpress- 4.9.4 sonrası için kod
add_filter( 'show_admin_bar', '__return_false', PHP_INT_MAX );
Wordpress- 4.9.4 öncesi için kod
add_filter(‘show_admin_bar’, ‘__return_false’);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment