How To Get Username In WordPress Using PHP
To get the current username in wordpress using php you have write this custom code in functions.php function getUser(){ $current_user = wp_get_current_user(); $userName = $current_user->display_name; ?>
To get the current username in wordpress using php you have write this custom code in functions.php function getUser(){ $current_user = wp_get_current_user(); $userName = $current_user->display_name; ?>
WordPress is the number one content management system in the present world. One of the main reasons to be the number one is to easy handling. Event nonprogrammer can make a beautiful website with WordPress. There are several post types are supported in WordPress that can leverage your site more efficiently. Normally we can see …
How to Create Custom Post Type Without Plugin in WordPress Read More »