Skip to content

Instantly share code, notes, and snippets.

@barrykooij
Created February 6, 2018 12:29
Show Gist options
  • Save barrykooij/0a01f5c9bfcd83f94313022ee295ad79 to your computer and use it in GitHub Desktop.
Save barrykooij/0a01f5c9bfcd83f94313022ee295ad79 to your computer and use it in GitHub Desktop.
add_filter( 'dlm_widget_downloads_list_start', function ( $return ) {
global $wp;
$term = get_term_by( 'slug', sanitize_title( $wp->query_vars['download-category'] ), 'dlm_download_category' );
if ( ! is_wp_error( $term ) ) {
$return = '<h2>' . $term->name . '</h2>' . $return;
}
return $return;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment