h1,h2,h3,h4,h5,h6{font-family:"aw-conqueror-didot",serif}.custom-font{font-family:"aw-conqueror-didot",serif}// Add to your theme's functions.php file
function add_delete_post_admin_bar($wp_admin_bar) {
    if (!is_admin() && is_singular() && current_user_can('delete_posts')) {
        global $post;
        $wp_admin_bar->add_node(array(
            'id'    => 'delete-post',
            'title' => 'Delete Post',
            'href'  => get_delete_post_link($post->ID),
            'meta'  => array(
                'class' => 'delete-post-link',
                'onclick' => 'return confirm("Are you sure you want to delete this post?");'
            )
        ));
    }
}
add_action('admin_bar_menu', 'add_delete_post_admin_bar',100);