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>");

}

?>
Link to comment
https://forums.phpfreaks.com/topic/295176-calling-php-function-in-href-tag/
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>';

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.