How to make WordPress orderby work with post_excerpt column?
I can use WordPress in-built orderby to sort playlist by any column except post_excerpt
echo wp_playlist_shortcode( array(
'ids' = '7,8,9',
'order' = 'DESC',
'orderby' = 'post_excerpt',
));
WordPress Codex apparently states 'post_excerpt' is not a valid parameter for the 'orderby' parameter, and nobody nowhere knows how to make orderby
work with post_excerpt
. How to bypass this limitation?