do_signup_header

函数
do_signup_header ( No parameters )

do_signup_header: 这是一个WordPress函数,用于输出注册页面的标题HTML: 这个函数通常被需要定制注册页面外观的插件和主题所使用。

通过wp_head打印注册表头。

function do_signup_header() {
	/**
	 * Fires within the head section of the site sign-up screen.
	 *
	 * @since 3.0.0
	 */
	do_action( 'signup_header' );
}

常见问题

FAQs
查看更多 >