Replies: 2
Earlier today we were successful at getting the sermons to display properly, but I noticed that the Sermon Sorting that is supposed to be available by default on the archive pages is not visible.
I had used this in the past, but it makes no difference now:
// Add Sermon Sorting Options to Sermon Archive Pages
add_action('genesis_before_loop', 'bds_add_sermon_sorting', 15);
function bds_add_sermon_sorting() {
if ( 'wpfc_sermon' == get_post_type() && is_archive() ) {
render_wpfc_sorting();
}
}
I am using the “latest development version” as offered here.