As You Log Out Of Last Year
And Login To This New Year,
I Wish To Send You Happy New Year Wishes
Full Of Success, Prosperity, Happiness And Joy.
May This Be A Year Of Change Unto Your Life
May God Give You Protection And Good Health
So That You Live To See Other Years To Come
Month: December 2018
How to Remove/Disable RSS feeds from WordPress?
Easy way to Remove/Disable RSS feeds from WordPress is install and activate “Remove RSS Feed” plugin.
No need to set anything. This plugin will remove/disable the RSS feeds from WordPress when you activate.
Please let me know, If you have any queries or feedback.
How to get ID of the logged-in User in Yii2?
Logged in user information will be stored in
Yii::$app->user->identity variable. The authenticated user
identity information can be retrieved via
Yii::$app->user->identity.
You can get ID by using below code.
<?= \Yii::$app->user->identity->ID ?>
If you have any doubts, Please comment here.
How to get username of the logged-in User in Yii2?
Logged in user information will be stored in Yii::$app->user->identity variable. The authenticated user identity information can be retrieved via Yii::$app->user->identity.
You can get username by using below code.
<?= \Yii::$app->user->identity->
If you have any doubts, Please comment here.