### wp-config.php Credentials Source: https://fluentauth.com/docs/google-auth-connection Code snippet to define Google Client ID and Secret in wp-config.php. ```php define('FLUENT_AUTH_GOOGLE_CLIENT_ID', '******'); define('FLUENT_AUTH_GOOGLE_CLIENT_SECRET', '******'); ``` -------------------------------- ### Register/Login Shortcodes Source: https://fluentauth.com/docs FluentAuth provides shortcodes for custom login or signup pages. ```shortcode [fluent_auth] ``` ```shortcode [fluent_auth_login] ``` -------------------------------- ### Configure wp-config.php Source: https://fluentauth.com/docs/facebook-auth-connection Add the following constants to your wp-config.php file to integrate with FluentAuth using Facebook credentials. ```php define('FLUENT_AUTH_FACEBOOK_CLIENT_ID', '******'); define('FLUENT_AUTH_FACEBOOK_CLIENT_SECRET', '******'); ``` -------------------------------- ### Only Signup Form Source: https://fluentauth.com/docs/shortcodes This shortcode renders only the Signup form. ```shortcode [fluent_auth_signup] ``` -------------------------------- ### Only Magic Login Form Source: https://fluentauth.com/docs/shortcodes This shortcode renders only the magic login form. ```shortcode [fluent_auth_magic_login]