There are several tidbits of code that I have collected over the past few years that make it easier and easier to turn a simple WordPress installation into a very functional content management system (CMS). There are many times when it would be nice to show logged in members certain bits of information (certain categories, posts, or just a simple "Welcome back!") and of course there is a simple way of doing this:
That bit of code will allow you to do something like this which will allow you to show the logged in user's preferred user name (selected in the User preferences), and then a list of member only pages (private page parent is page ID 20 - I am showing all sub pages of the members-only pages marked as private). If the user is not logged in, they will get a Welcome visitor! greeting :
<?php global $user_identity;get_currentuserinfo();?>
<p>Welcome back <?php echo $user_identity;?></p>
<p>Here is a list of private pages only viewable by Members:</p>
<ul>
<?php wp_list_pages('title_li=&child_of=20'); ?>
</ul>
<?php else :?>
Welcome, visitor!
<?php endif;?>
You can make it as simple as a change in greeting for members and non-members, or put in specific logic like I did with showing the pages. The potential is limitless.


Comments/Pingbacks/Trackbacks
Add a Comment or trackback from your own site.
Leave a Reply