Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created January 4, 2019 02:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/ffda068bd04fd98eaa02216861e30728 to your computer and use it in GitHub Desktop.
Save billerickson/ffda068bd04fd98eaa02216861e30728 to your computer and use it in GitHub Desktop.
<?php
/**
* Display Posts, change title tag
* @see https://displayposts.com/2019/01/04/change-title-tag/
*
*/
function be_dps_change_title_tag( $tag ) {
return 'h4';
}
add_filter( 'display_posts_shortcode_title_tag', 'be_dps_change_title_tag' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment