Entfernen des Links im Logo der WordPress-AdministratorleistePhp

PHP-Programmierer chatten hier
Anonymous
 Entfernen des Links im Logo der WordPress-Administratorleiste

Post by Anonymous »

Ich habe es geschafft, das Wordpress-Symbol/Logo in der Admin-Leiste durch ein benutzerdefiniertes in meiner Datei „functions.php“ zu ersetzen und außerdem das Dropdown-Menü zu entfernen, das auf die Wordpress-Dokumentation, Support-Foren, Feedback usw. verweist. Ich versuche, den Link auf dem Logo zu deaktivieren, der Sie zur Seite „Über Wordpress“ im Admin führt, auf der die Funktionen der aktuell ausgeführten Version erläutert werden.

Ich würde dies gerne aus der Datei „functions.php“ heraus tun. Ist das möglich?

Das ist der Code, den ich bisher verwendet habe:

Code: Select all

    // Replace Wordpress logo with custom Logo
function my_custom_logo() {
echo '

#wp-admin-bar-wp-logo > .ab-item .ab-icon:before {
background-position: 0 0;
content: url(' . get_bloginfo('stylesheet_directory') . '/assets/img/my-logo.png)!important;
top: 2px;
display: block;
width: 15px;
height: 20px;
pointer-events: none!important;
cursor: default;
}
#wp-admin-bar-wp-logo.hover > .ab-item .ab-icon {
background-position: 0 0;
}

';
}
add_action('admin_head', 'my_custom_logo');
add_action('wp_head', 'my_custom_logo');

//disable a few items on the admin bar
function remove_admin_bar_links() {
global $wp_admin_bar;
$wp_admin_bar->remove_menu('new-content');      // Remove the 'add new' button
$wp_admin_bar->remove_menu('comments');         // Remove the comments bubble
$wp_admin_bar->remove_menu('about');            // Remove the about WordPress link
$wp_admin_bar->remove_menu('wporg');            // Remove the WordPress.org link
$wp_admin_bar->remove_menu('documentation');    // Remove the WordPress documentation link
$wp_admin_bar->remove_menu('support-forums');   // Remove the support forums link
$wp_admin_bar->remove_menu('feedback');         // Remove the feedback link
}
add_action( 'wp_before_admin_bar_render', 'remove_admin_bar_links' );

Quick Reply

Change Text Case: 
   
  • Similar Topics
    Replies
    Views
    Last post