Skip to content

Tag Archives: wordpress

Cookie-free JS, CSS, etc for WordPress

15-Jan-10

These 3 steps will help you to set up cookie free JavaScript, CSS and other files for your WordPress installation. (This is especially helpful for changing the domain of certain JS/CSS file references added by plugins.) Before you start, make sure your blog URL has a leading www (e.g. www.example.com, not example.com) in your WordPress [...]

WP Minify

08-Jan-10

Note to self. When building WP sites with several js/css files, remember to include WP Minify with the regular plugins.

WordPress: Remove RSS (e.g. Page / Comments) Feed from Head

09-Oct-09

Insert into theme's functions.php: remove_action( 'wp_head', 'feed_links_extra', 3); // Removes the links to the extra feeds such as category feeds remove_action( 'wp_head', 'feed_links', 2); // Removes links to the general feeds: Post and Comment Feed Other stuff: Removing wp_head() elements (rel=’start’, etc.)

Speed up your WordPress blog download times

11-Jun-09

These two steps took 42% off the download size of this blog's front page. Download and activate GZIP Output WP plugin. Add these settings to your .htaccess. [Update 2009-06-17] Problems with caching php output. Comments did not appear for some users. New .htaccess settings: # MOD_DEFLATE COMPRESSION SetOutputFilter DEFLATE # Turn on Expires and set [...]

WordPress plugin for navigation paging

19-May-09

WP Page Numbers - WordPress plugin for navigation paging, instead of next and previous | jenst.se.