function genesis_cpt_archive_settings_toolbar_styles() { // Bail if in admin, user is not logged in, admin bar is not showing, not a post type archive page, // or post type does not support genesis-cpt-archive-settings. if ( is_admin() || ! is_user_logged_in() || ! is_admin_bar_showing() || ! is_post_type_archive() || ! genesis_has_post_type_archive_support() ) { return; } echo '<style type="text/css"> #wpadminbar #wp-admin-bar-cpt-archive-settings > .ab-item:before { content: "\f464"; top: 2px; } </style>'; }