Log in to your Managed Hosting Server via SSH
Add these two lines to .bashrc:
// # Excerpt Helper | |
// Usage: `{{excerpt}}`, `{{excerpt words="50"}}`, `{{excerpt characters="256"}}` | |
// | |
// Attempts to remove all HTML from the string, and then shortens the result according to the provided option. | |
// | |
// Defaults to words="50" | |
/* | |
Added optional ability to use 2 <!--excerpt--> tags in your posts to specify exactly what will be |
<IfModule mod_rewrite.c> | |
Options +FollowSymLinks | |
Options -MultiViews | |
RewriteEngine On | |
RewriteBase / | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteRule ^ index.php [L] | |
</IfModule> |