<?php
add_filter( 'the_title', 'wptq_strong_title' );
function wptq_strong_title( $title ){
  return '<strong>' . $title . '</strong>';
}