<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									How to show user login times for WordPress site without plugin using MySQL Query - Wordpress Website				            </title>
            <link>https://ankitsudhera.com/forum/wordpress-website/how-to-show-user-login-times-for-wordpress-site-without-plugin-using-mysql-query/</link>
            <description>Ankit Sudhera Portfolio Website Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Sat, 18 Jul 2026 11:27:18 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: How to show user login times for WordPress site without plugin using MySQL Query</title>
                        <link>https://ankitsudhera.com/forum/wordpress-website/how-to-show-user-login-times-for-wordpress-site-without-plugin-using-mysql-query/#post-16</link>
                        <pubDate>Mon, 05 May 2025 08:08:04 +0000</pubDate>
                        <description><![CDATA[More details with following:
&quot;
SELECT u.ID, u.user_login, u.user_email, u.user_registered, u.display_name, FROM_UNIXTIME(SUBSTRING_INDEX(SUBSTRING_INDEX(m.meta_value,&#039;\&quot;login\&quot;;i:&#039;,-1),&#039;;}...]]></description>
                        <content:encoded><![CDATA[<p>More details with following:</p>
<p>"</p>
<p>SELECT u.ID, u.user_login, u.user_email, u.user_registered, u.display_name, FROM_UNIXTIME(SUBSTRING_INDEX(SUBSTRING_INDEX(m.meta_value,'\"login\";i:',-1),';}}',1)) AS last_login, FROM_UNIXTIME(SUBSTRING_INDEX(SUBSTRING_INDEX(m.meta_value,'\"expiration\";i:',-1),';',1)) AS logout_time FROM wp_users u LEFT JOIN wp_usermeta m ON u.ID=m.user_id AND m.meta_key='session_tokens' ORDER BY last_login DESC</p>
<p>"</p>]]></content:encoded>
						                            <category domain="https://ankitsudhera.com/forum/wordpress-website/">Wordpress Website</category>                        <dc:creator>ankitbnl406</dc:creator>
                        <guid isPermaLink="true">https://ankitsudhera.com/forum/wordpress-website/how-to-show-user-login-times-for-wordpress-site-without-plugin-using-mysql-query/#post-16</guid>
                    </item>
				                    <item>
                        <title>How to show user login times for WordPress site without plugin using MySQL Query</title>
                        <link>https://ankitsudhera.com/forum/wordpress-website/how-to-show-user-login-times-for-wordpress-site-without-plugin-using-mysql-query/#post-15</link>
                        <pubDate>Mon, 05 May 2025 08:06:21 +0000</pubDate>
                        <description><![CDATA[You can do it without using plugin with the following SQL query to fetch and show the records. But please create a page separately.
&quot;
SELECT user_id, wp_users.user_login, FROM_UNIXTIME(sub...]]></description>
                        <content:encoded><![CDATA[<p>You can do it without using plugin with the following SQL query to fetch and show the records. But please create a page separately.</p>
<p>"</p>
<p>SELECT user_id, wp_users.user_login, FROM_UNIXTIME(substring_index(substring_index(meta_value, '"login";i:', -1), ';}}', 1)) as last_login FROM wp_usermeta inner join wp_users on user_id = wp_users.ID WHERE meta_key='session_tokens' ORDER BY `last_login` DESC</p>
<p>"</p>
<p>You can replace the table name wp with your table name prefix. </p>
<p>If you have any questions, please comments or contact us.</p>]]></content:encoded>
						                            <category domain="https://ankitsudhera.com/forum/wordpress-website/">Wordpress Website</category>                        <dc:creator>ankitbnl406</dc:creator>
                        <guid isPermaLink="true">https://ankitsudhera.com/forum/wordpress-website/how-to-show-user-login-times-for-wordpress-site-without-plugin-using-mysql-query/#post-15</guid>
                    </item>
							        </channel>
        </rss>
		