Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Filtrar mensaje en footer admin

Agregar un logo con enlace en el pie de administración.

function scm_text_footer_admin( $text ) {
	$text= '<a style="color: #9268e7" href="https://www.silverpcweb.es" target="_blank">
	<img src="/wp-content/uploads/2021/02/logo_silver.png" alt="logo_silver" width="70" height="" class="alignright" title="Silverpcweb">
	</a>';
	return $text;
}
add_filter( 'admin_footer_text', 'scm_text_footer_admin' );