Skip to content
Snippets Groups Projects
Commit 8c720498 authored by agata's avatar agata
Browse files

login logo AI

parent bf785019
Branches
Tags v0.4.1
No related merge requests found
Pipeline #37506 passed
<?php
/*
* Plugin Name: A/I - Privacy policy
* Description: Show Autistici/Inventati privacy policy
* Version: 0.0.1
* Author: Autistici/Inventati
* Author URI: https://autistici.org
*/
/**
* Change login page title tag content.
*
* @param string $login_title The page title, with extra context added.
* @param string $title The original page title.
*
* @return string Modified login title string.
*/
function wpdocs_login_title( $login_title, $title ) {
$login_title = $title . ' ‹ ' . get_bloginfo( 'name' ) . 'Autistici/Inventati - R*';
return $login_title;
}
add_filter( 'login_title', 'wpdocs_login_title' ), 10, 2 );
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment