开发者 | Newnab |
---|---|
更新时间 | 2013年11月30日 22:12 |
PHP版本: | 3.5 及以上 |
WordPress版本: | 3.5 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
/wp-content/plugins/
directory OR install it through the Plugin -> Add New section of the Dashboard<?php wordpress_quest_display(); ?>
in your templates, or use the Widget to display current user quest informationYes! <?php wordpress_quest_display() ?>
accepts an array of options which overrule the default settings in the dashboard.
The options are as follows:
<?php
$options = array(
'user_level' => true //Whether to display user's current level
'xp' => true, //Whether to display user's current XP
'distance' => true, //Whether to display distance (in XP) to users next level
'quest' => true, //Whether to show a list of all completed quests for this user
'recent-quest' => true, //Whether to show a list of recently completed quests for this user
'last-quest' => true //Whether to show the most recently completed quest for this user
); ?>
Yes, <?php wordpress_quest_display(); ?>
accepts a second parameter - ID of desired user. If none is given it will automatically try to determine the current user ID and use that.
There is also a third option - A fallback for what you want to display if there is no currently logged in user and no ID has been passed to the function.
The fallback parameter defaults to nothing.
So, in full, your call to the function might look like:
<?php wordpress_quest_display($options, $userID, 'No user currently logged in.'); ?>