Skip to content

Commit

Permalink
Document filter.
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenDufresne committed Jul 11, 2024
1 parent dc7f304 commit 71f5b68
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion class-two-factor-core.php
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,12 @@ public static function login_html( $user, $login_nonce, $redirect_to, $error_msg
</a>
</li>
<?php endforeach; ?>
<?php echo apply_filters( 'two_factor_login_support_links', '' ); ?>
<?php
/*
* Allow plugins to add links to the two-factor login form.
*/
echo apply_filters( 'two_factor_login_support_links', '' );
?>
</ul>
</div>
<?php endif; ?>
Expand Down

0 comments on commit 71f5b68

Please sign in to comment.