If you are using advanced WordPress then you must have seen the three dots [...] on your homepage for post excerpt. Its more better to use Read More link instead of unclickable text. So, lets see how can we do that.

Logon to your WordPress blog and go to Appearance > Editor. Find functions.php file. Add the following code to the bottom of document:
// Add Read More to end of post excerptadd_filter(‘excerpt_more’, ‘add_excerpt_more’);function add_excerpt_more($more) {return ‘<a href=”‘.get_permalink().’” rel=”nofollow”><span>Read More</span></a>’;}// Add Read More to end of post excerptadd_filter(‘excerpt_more’, ‘add_excerpt_more’);function add_excerpt_more($more) { return ‘<a href=”‘.get_permalink().’” rel=”nofollow”><span>Read More</span></a>’;}
Click Update File button. Now, you’re done!
View your homepage, you must see Read More link to your homepage in each post. You can add some styles by adding CSS code in style.css file and using .readmore class.






