Home / Remove “WordPress” from admin titles
Duplicate Snippet

Embed Snippet on Your Site

Remove “WordPress” from admin titles

Stop adding "WordPress" to the admin pages browser title.

40+
Code Preview
php
<?php
add_filter( 'admin_title', function ( $admin_title, $title ) {
	return str_replace( " &#8212; WordPress", '', $admin_title );
}, 10, 2 );

Comments

Add a Comment