
Nextend Social Login automatically adds the login buttons to the default WordPress login area. Of course, you can publish the login buttons anywhere you want them. At each provider, there is a Usage menu, where you can find the shortcode of the provider and example to include the login via a simple link.
For instance, at the Facebook provider, you can find these shortcodes:
Code
[nextend_social_login]
[nextend_social_login provider="facebook"]
[nextend_social_login provider="facebook" style="icon"]
[nextend_social_login provider="facebook" style="icon" redirect="https://nextendweb.com/"]
[nextend_social_login trackerdata="source"]
You can include it in your page or post, or use the do_shortcode function, anywhere in your theme. See the full list of parameters you can use.
PHP example
This code will display the Facebook login button when inserted into the theme’s PHP file:
Code
<?php echo do_shortcode('[nextend_social_login]'); ?>
At the Widgets, you can also find a Nextend Social Login widget, which you can place in any widget position.