You appear to be a bot. Output may be restricted
Description
Adds the pencil icon to the CPT archive settings menu link.
Add custom CSS to `<head>`.
Usage
genesis_cpt_archive_settings_toolbar_styles();
Parameters
Returns
void
Source
File name: genesis/lib/functions/toolbar.php
Lines:
1 to 14 of 14
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>'; }