Jump to content

calling php function in href tag


kathymack

Recommended Posts

Hi

 

I have installed a widget on my wordpress called "php text widget".

 

What I iwant to do is to call the wp function so that they user clicks link they are automatically logged out and redirected to login page
 

here is  my code below when I test this code I get the following error:

 

The requested URL /wp_logout_url( was not found on this server.

<?php

$redirect = "http://www.mysite.com/wp-login.php";

if ( is_user_logged_in() ) 
{
print ("<a href=wp_logout_url( $redirect );>LOGOUT</a>");

}

?>
Edited by kathymack
Link to comment
Share on other sites

There's an example right on the documentation for wp_login_url, under "Default Usage".

 

Just to clarify, the documentation for wp_logout_url() can be found here:

http://codex.wordpress.org/Function_Reference/wp_logout_url

 

 

@kathymack - you could try something like this:

print '<a href="' . wp_logout_url( $redirect ) . '">LOGOUT</a>';
Edited by cyberRobot
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.