How to Hide Email Addresses in Source ...
Protect your email addresses from spam bots and scrapers by hiding them in your sourc...

WPCodeBox
1283

Move WPCodeBox menu to the top bar for easy access in WordPress.
<?php
add_filter( 'admin_bar_menu', function( $wp_admin_bar ) {
if ( current_user_can( 'manage_options' ) && is_admin_bar_showing() ) {
$iconhtml = sprintf( '<span class="wpcb ab-icon"><img src="%s" style="height: 16px;" /></span>', WP_PLUGIN_URL . '/wpcodebox/logo.svg' );
$wp_admin_bar->add_node(
array(
'id' => 'wpcodebox_adminbar',
'title' => $iconhtml . '<span class="wpcb ab-label">' . __( 'WPCodeBox', 'wpcodebox' ) . '</span>',
'href' => admin_url( 'admin.php?page=wpcodebox2' ),
)
);
}
}, 999 );





