Can Pinboard sort posts by title? I’ve trised it with Display Posts Shortcode plugin which sorts on other themes but it seems that Pinboard prevents it doing this. I’m still playing with the theme to decide if it meets my needs and so have no site to show yet.
Thanks,
David
Add the following conditionals to the pinboard_filter_query()
function:
$query->set( 'orderby', 'post_title' );
$query->set( 'order', 'ASC' );
Many thanks for your swift response.