Skip to content

password_protected_after_login_form

Ben Huson edited this page Nov 8, 2013 · 1 revision

Use this action to insert content below the login form.

Example

function my_password_protected_after_login_form() {
	echo '<p>Your content here.</p>';
}
add_action( 'password_protected_after_login_form', 'my_password_protected_after_login_form' );