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 ); }