krista-m
7/6/2018 - 1:12 PM

Add icon to post title

Add icon (or something else) next to the post title

add_filter( 'the_title', 'kr_starter_the_title', 10 );
function kr_starter_the_title( $post_title ) {
  return sprintf( '<i class="fa fa-something" /> %s', $post_title );
}