Пользователь WordPress вошел в раскадровку

Попытка войти в систему пользователя в WordPress из плагина лайтбокса:

[iframe_loader type='lightbox' href='https://www.website.org/wp-content/uploads/articulate_uploads/TestCert/' size_opt='lightebox_default']

это тест раскадровки, который отправляет результаты на страницу php — код на странице php:

<?php
$current_user = wp_get_current_user();
/**
* @example Safe usage: $current_user = wp_get_current_user();
* if ( !($current_user instanceof WP_User) )
*     return;
*/
echo 'Username: ' . $current_user->user_login . '<br />';
echo 'User email: ' . $current_user->user_email . '<br />';
echo 'User first name: ' . $current_user->user_firstname . '<br />';
echo 'User last name: ' . $current_user->user_lastname . '<br />';
echo 'User display name: ' . $current_user->display_name . '<br />';
echo 'User ID: ' . $current_user->ID . '<br />';
?>

0

Решение

PHP нужен был include_once указать на wp-blog-header.php в WordPress для запуска функции.

include_once ( "../public_html/wp-blog-header.php" );

global $current_user;

echo 'Username: ' . $current_user->user_login . "\n";
echo 'User email: ' . $current_user->user_email . "\n";
echo 'User level: ' . $current_user->user_level . "\n";
echo 'User first name: ' . $current_user->user_firstname . "\n";
echo 'User last name: ' . $current_user->user_lastname . "\n";
echo 'User display name: ' . $current_user->display_name . "\n";
echo 'User ID: ' . $current_user->ID . "\n";
1

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]