-
Sort Unix processes on ps by highest memory usage
just a snippet, –sort is not good for me..try
ps -eo pmem,pcpu,rss,vsize,args | sort -k 1 -r | more -
Change WordPress page order
I am not sure why Page order is not working in WordPress, but this is a simple workaround to fix it
go to wordpress admin -> write -> write page -> change ALL pages “Page Order" from the right down box.
open file “wp-includes\template-functions-post.php" in any text editor.
go to line 334 or search for “function wp_list_pages($args = [...]

