Category Archives: Uncategorized

Miscellaneous WordPress questions

      Comments Off on Miscellaneous WordPress questions

How do you pin a post to the top of your blog? While creating/editing your post, click on edit next to Visibility and check “Stick post to front page”

WordPress: How to Remove the […] from the excerpt

      Comments Off on WordPress: How to Remove the […] from the excerpt

I was trying to remove WordPress’ […] at the end of an excerpt and ended up spending some time looking for a solution. So I though I would share what worked for me. Add this code into the functions.php file in your theme. function trim_excerpt($text) { return rtrim($text,'[…]’); } add_filter(‘get_the_excerpt’, ‘trim_excerpt’); And that’s all folks!