你可以。。。
Load the file into the file where you want to display the \'hey username\' message:
<?php include(TEMPLATEPATH .\'/check-user-hello.php\'); ?>
然后在“check user hello.php”文件中,您需要输入以下代码
<?php
if ( is_user_logged_in() ) {
global $current_user;
get_currentuserinfo();
echo \'Hey \' . $current_user->display_name;
} else {
echo \'<a href="\'. get_bloginfo(\'url\') .\'/wp-admin" class="loginlinktop">Login</a>\';
}
?>
希望这有帮助:)
TO learn more about this subject:
FIX 3据我所知,你需要抓取wp博客标题。php,以便在循环之外运行Wordpress函数。。所以试试这个。
<?php
require(\'../../../wp-blog-header.php\');
if ( is_user_logged_in() ) {
global $current_user;
get_currentuserinfo();
echo \'Hey \' . $current_user->display_name;
} else {
echo \'<a href="\'. get_bloginfo(\'url\') .\'/wp-admin" class="loginlinktop">Login</a>\';
}
?>
Please NOTE:我在此代码中创建的“wp header blog”路径假定您的文件位于模板目录中。。如果不是,则应更改require的路径,以便正确加载文件。