Simple and Effective .htaccess File
UPDATE — Better .htaccess example here.
UPDATE — Better .htaccess example here.
I personally find that this structure is the most user-friendly and SEO-friendly: <title><?php wp_title( ‘ | ‘, true, ‘right’ ); ?></title> which will result in: Name of Post | Name of Site For a live demo, reference this very blog. UPDATE — While the above still works, you can now remove this from header.php and … User-Friendly and SEO-Friendly Title Structure for WordPress
Canonical Link WordPress Plugin Download Now | See on WordPress.org | Support Canonical Link Firefox Add-on Download Now | See on GitHub | Support This add-on will also help you to verify your canonical links are set up correctly. Canonical Link Script <link rel="canonical" href="https://<?php echo $_SERVER[‘HTTP_HOST’]; ?><?php echo parse_url( $_SERVER[‘REQUEST_URI’], PHP_URL_PATH ); ?>" /> … Canonical Link Guide and Tools
Demo: (only use one of the CSS methods below) CSS Sprites (New Method) .hov{display:block;width:245px;height:195px;background:url(images/hover.png)} .hov:hover{background-position:0 -195px} For this to work, simply stack the normal state image on top of your hover image making one image. They should be exactly the same size and stacked perfectly on top of each other. So, in this example the … Pure CSS Minimalist Image Hover Rollover