howot: Show last (most recent) updated pages (not posts) rev 20 jun 2019 ....................................................... show list of last updated pages - how to: * WP function get_pages() https://codex.wordpress.org/Function_Reference/get_pages Can get them sorted by 'post_modified' and can limit the number of Pages to list with 'number' - uses SQL LIMIT Can use for Custom Post Types also. Only hierarchical post types are valid for this function. The wp_list_pages() function uses get_pages(), and formats the output. * get_pages - at developer.wordpress.org https://developer.wordpress.org/reference/functions/get_pages/ I couldn't get those to work. Tried wp_list_pages(), and it showed me all pages, unsorted. But when i added param 'number' => 5 it did what i wanted, sorted descending by date. ('number' is not documented in codex, is mentioned here https://www.sitepoint.com/wordpress-pages-and-pages-api/ ) * plugin? not finding any, as of 20 jun 2019 _______________________________________________________ begin 20 jun 2019 -- 0 --