Skip Navigation

[Résolu] Logout Link

Ce fil est résolu. Voici une description du problème et la solution proposée.

Problem:
Display logout link with custom shortcode.

Solution:
You will need return some string in your PHP function, for example, you can modify your codes as below:

/** Custom Logout Shortcode
 */
function custom_logout_link_func() {
    $return = wp_logout_url();
    return '<a href="' . $return . '" class="btn btn-primary btn-xs btn-block" role="button" style="margin-bottom: 10px;">Logout</a>';
}
add_shortcode('logout_link', 'custom_logout_link_func');

Relevant Documentation:
http://codex.wordpress.org/Function_Reference/add_shortcode

This support ticket is created Il y a 8 années et 2 mois. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

No supporters are available to work today on Toolset forum. Feel free to create tickets and we will handle it as soon as we are online. Thank you for your understanding.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Hong_Kong (GMT+08:00)

Marqué : 

This topic contains 2 réponses, has 2 voix.

Last updated by lindsayH Il y a 8 années et 2 mois.

Assisted by: Luo Yang.

Auteur
Publications
#361145

I was trying to make a logout link... using this code....

/** Custom Logout Shortcode
 */
 function custom_logout_link_func() {
            $return = wp_logout_url();?>
            <a href="<?php echo $return; ?>" class="btn btn-primary btn-xs btn-block" role="button" style="margin-bottom: 10px;">Logout</a>
            <?php
        }
         
    add_shortcode('logout_link', 'custom_logout_link_func');

I also made sure that I registered the ShortCode in Views > Settings > Compatibility >3rd Party ShortCode arguments.

Nothing appears on the page though? Any ideas why this might have happened?

#361195

Dear lindsay,

You will need return some string in your PHP function, for example, you can modify your codes as below:

/** Custom Logout Shortcode
 */
function custom_logout_link_func() {
	$return = wp_logout_url();
	return '<a href="' . $return . '" class="btn btn-primary btn-xs btn-block" role="button" style="margin-bottom: 10px;">Logout</a>';
}
add_shortcode('logout_link', 'custom_logout_link_func');

Then use the shortcode [logout_link] in your content.

More help:
add_shortcode
http://codex.wordpress.org/Function_Reference/add_shortcode
Note that the function called by the shortcode should never produce output of any kind. S

#361287

Thank you for your help... worked perfectly.

This ticket is now closed. If you're a WPML client and need related help, please open a new support ticket.