<?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>
									Wordpress - Admin - How to sort the user overview by date by default - Web Development				            </title>
            <link>https://www.tweaking4all.com/forum/web-development/wordpress-admin-how-to-sort-the-user-overview-by-date-by-default/</link>
            <description>Tweaking4All.com Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Tue, 09 Jun 2026 03:18:18 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Wordpress - Admin - How to sort the user overview by date by default</title>
                        <link>https://www.tweaking4all.com/forum/web-development/wordpress-admin-how-to-sort-the-user-overview-by-date-by-default/#post-4641</link>
                        <pubDate>Thu, 02 Feb 2023 05:58:49 +0000</pubDate>
                        <description><![CDATA[Thanks for sharing this code. I was looking it for like last 1 hour.]]></description>
                        <content:encoded><![CDATA[<p>Thanks for sharing this code. I was looking it for like last 1 hour. </p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/web-development/">Web Development</category>                        <dc:creator>Anonymous</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/web-development/wordpress-admin-how-to-sort-the-user-overview-by-date-by-default/#post-4641</guid>
                    </item>
				                    <item>
                        <title>RE: Wordpress - Admin - How to sort the user overview by date by default</title>
                        <link>https://www.tweaking4all.com/forum/web-development/wordpress-admin-how-to-sort-the-user-overview-by-date-by-default/#post-4482</link>
                        <pubDate>Fri, 14 Oct 2022 11:49:01 +0000</pubDate>
                        <description><![CDATA[Adding the code above to your theme&#039;s functions.php file fixes the default sorting order 😊]]></description>
                        <content:encoded><![CDATA[<p>Adding the code above to your theme's functions.php file fixes the default sorting order 😊 </p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/web-development/">Web Development</category>                        <dc:creator>Hans</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/web-development/wordpress-admin-how-to-sort-the-user-overview-by-date-by-default/#post-4482</guid>
                    </item>
				                    <item>
                        <title>Wordpress - Admin - How to sort the user overview by date by default</title>
                        <link>https://www.tweaking4all.com/forum/web-development/wordpress-admin-how-to-sort-the-user-overview-by-date-by-default/#post-4383</link>
                        <pubDate>Thu, 08 Sep 2022 08:15:22 +0000</pubDate>
                        <description><![CDATA[Since I have to look for spammers on a daily basis, I always want to see the Users overview, in the wp-admin pages, ordered by date (descending).I have no idea why this is not a default opti...]]></description>
                        <content:encoded><![CDATA[<p>Since I have to look for spammers on a daily basis, I always want to see the Users overview, in the wp-admin pages, ordered by date (descending).<br />I have no idea why this is not a default option or setting, but with this little code this will be done automatically:</p>
<p>(copy the code into the functions.php of your theme)</p>
<pre contenteditable="false">// Start the users overview with users sorted by date

function t4a_default_users_by_date($args){
    if ( empty( $args ) ) {  
        $args = "user_registered";
        $args   = "DESC"; 
      }
        
    return $args;
}

add_filter("users_list_table_query_args","t4a_default_users_by_date");</pre>
<p>This will sort only if no sort order has been set (that's what it starts with). </p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/web-development/">Web Development</category>                        <dc:creator>Hans</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/web-development/wordpress-admin-how-to-sort-the-user-overview-by-date-by-default/#post-4383</guid>
                    </item>
							        </channel>
        </rss>
		