Database Error; SQL: SELECT
DISTINCT
`t`.*
FROM `wp_posts` AS `t`
LEFT JOIN `wp_postmeta` AS `featured` ON
`featured`.`meta_key` = 'featured'
AND `featured`.`post_id` = `t`.`ID`
WHERE ( ( `featured`.`meta_value` = true ) AND ( `t`.`post_type` = 'article' ) AND ( `t`.`post_status` IN ( 'publish' ) ) )
ORDER BY date_of_posting DESC, `t`.`menu_order`, `t`.`post_title`, `t`.`post_date`
LIMIT 0, 15; Response: Unknown column 'date_of_posting' in 'ORDER BY'