do_signup_header

函式
do_signup_header ( No parameters )

do_signup_header: 這是一個WordPress函式,用於輸出註冊頁面的標題HTML: 這個函式通常被需要定製註冊頁面外觀的外掛和主題所使用。

通過wp_head列印登錄檔頭。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function do_signup_header() {
/**
* Fires within the head section of the site sign-up screen.
*
* @since 3.0.0
*/
do_action( 'signup_header' );
}
function do_signup_header() { /** * Fires within the head section of the site sign-up screen. * * @since 3.0.0 */ do_action( 'signup_header' ); }
function do_signup_header() {
	/**
	 * Fires within the head section of the site sign-up screen.
	 *
	 * @since 3.0.0
	 */
	do_action( 'signup_header' );
}

常見問題

FAQs
檢視更多 >