/*!
Theme Name: Kava Child
Theme URI:
Author: Zemez
Author URI:
Description: Kava child theme.
Template: kava
Version: 1.0.1
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: kava-child
*/
/* Remove automatic hyphenation */
.site-content article { word-wrap: normal; -webkit-hyphens: none; -moz-hyphens: none; hyphens: none; }
.widget-area .widget { word-wrap: normal; -webkit-hyphens: none; -moz-hyphens: none; hyphens: none; }

/* Turn off the WordPress Admin Bar for all users */

add_filter( 'show_admin_bar', '__return_false' );

If you want admins to be able to see the toolbar (but you don’t want other users to), tweak the code so it looks like this:

if ( ! current_user_can( 'manage_options' ) ) {

    add_filter('show_admin_bar', '__return_false');

}