citizenelah You can use this query to fetch the articles if they are sorted manually from the admin structure. SELECT id, view_href, body, last_publish_time FROM messages WHERE board.id = 'TechnicalArticles' ORDER BY manual_sort asc limit 10 If you need to fetch the latest 10 published articles then you will need the below query: SELECT id, view_href, body, last_publish_time FROM messages WHERE board.id = 'TechnicalArticles' ORDER BY last_publish_time desc limit 10 The last_publish_time field contains the date time that the message was last updated. If there have been no edits to a message, then last_publish_time will equal post_time. If you do not want the edited posts then you need to just add the query and sort the posts by post_time in descending order and you will be able to fecth the latest 10 posts published from the board. SELECT id, view_href, body, last_publish_time FROM messages WHERE board.id = 'TechnicalArticles' ORDER BY post_time desc limit 10 Do let me know if in case I was able to provide you a solution or in case you have some other queries related to the same, will be happy to help.