브라우저 탭 문구 수정

This commit is contained in:
kyy
2026-01-16 13:39:16 +09:00
parent 0b736230cd
commit 932edc1b95

View File

@@ -248,6 +248,18 @@ function sso_add_cta_banner() {
add_action( 'loop_start', 'sso_add_cta_banner' );
/**
* Filters the document title to display a custom title.
*
* @param string $title The original title.
* @return string The modified title.
*/
function sso_custom_document_title( $title ) {
return 'PHP SSO Login Demo';
}
add_filter( 'pre_get_document_title', 'sso_custom_document_title', 9999 );
/**
* Adds the JavaScript for the SSO popup to the footer.
*/