Changeset 807156
- Timestamp:
- 11/19/2013 11:07:53 PM (12 years ago)
- Location:
- get-user-info/trunk
- Files:
-
- 2 edited
-
getUserInfo.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
get-user-info/trunk/getUserInfo.php
r606834 r807156 4 4 Plugin URI: http://wordpress.org/extend/plugins/get-user-info/ 5 5 Description: Choose to display any of the following for any user: User name, first and last name, avatar, description or website. A title can be added along with a css class to allow styling if needed. Is available as a widget or shortcode. Ex. [userinfo user="User Name" class="CssClass" title="My Title" username="true" name="true" avatar="true" description="true" website="true"]. 6 Version: 1. 16 Version: 1.2 7 7 Author: Jeff Freeman 8 8 Author URI: http://graphicalforce.com … … 51 51 } 52 52 53 $user = get_user databylogin($user);53 $user = get_user_by('login', $user); 54 54 $user_email = $user->user_email; 55 55 if ( $userNameDisplay ) { -
get-user-info/trunk/readme.txt
r606834 r807156 3 3 Tags: users, user, shortcode 4 4 Requires at least: 3.0 5 Tested up to: 3. 4.26 Stable tag: 1. 15 Tested up to: 3.7.1 6 Stable tag: 1.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html 9 9 10 Display the user name, first and last name, avatar, description, or website of any user via widget or shortcode. Other options are title and/or a css class.10 Display's username, first and last name, avatar, description, or website of any user via widget or shortcode. 11 11 12 12 == Description ==
Note: See TracChangeset
for help on using the changeset viewer.