Since I started using Mint, every time I looked on the Pages section, it would show abbreviated titles for the pages that were accessed. I soon realized that the problem was not so much Mint, but that my actual Title tags from WordPress all started with my website’s name and then the actual blog entry title. A more readable title would be one that started with the actual title of the blog entry instead of “WebKeyDesign >> My Post Title”. In order to change this you have to edit the Title tag code in your WordPress theme. You can find a good tutorial on modifying the WordPress Title tag on Ardamis.com.
Here is what I changed the Title tag to:
<title><?php wp_title(' '); ?><?php if(wp_title(' ', false)) { echo ' | '; } ?><?php bloginfo('name'); ?></title>
There is one slight problem though which Ardamis mentions, namely there are some spaces that get inputted into the Title tag. Ardamis does offer a workaround for this, but search engines will not care about the extra spaces, so you can do without the workaround if you like.