Do not use meta keywords and meta description

Matt Cutts, Google software engineer: Google is not using meta-keywords tag at all because keywords are mostly used to spam search engines. Google is not using the meta-description tag for ranking. Sometimes the meta-description tag is used for the site-snippet in search results if part of the content does not fit. But mostly meta-description is ... Read more

parables

1) Tactics Epigraph. - I work from morning till night! - And when do you think? (The dialogue between the young and brilliant physicist Rutherford) The annual world championship held in British Columbia. The finalists were Canadian, and Norwegian. Their task was as follows. Each of them that a certain portion of the forest. The ... Read more

html5 document structure

Basic semantic html5 document structure (passes W3C html5 validation): Standard semantic html5 document structure (passes W3C html5 validation): Advanced semantic html5 document structure with classes: HTML5 tags HTML5 IE support

html tags

<a> - Defines a hyperlink <abbr> - Defines an abbreviation <address> - Defines an address element <area> - Defines an area inside an image map <article> - [HTML5] Defines an article <aside> - [HTML5] Defines content aside from the page content <audio> - [HTML5] Defines sound content <b> - Defines bold text <base> - Defines ... Read more

WordPress user capabilities

WordPress user roles Super Admin - admin of the whole Network, can manage each site and everything in the Network Administrator - can do everything Editor - can create, edit and delete main items: pages, posts, comments, media Author - can view other people's articles; create, edit and publish his own articles Contributor - can ... Read more

Using jQuery

simple way (same as "$(document).ready(function(){"): same as previous but with preventing $-conflicts with other js-frameworks: window-load (use this method when you need to manipulate with images; only in this way you can get the height of the images with js in chrome which are not yet loaded for example): Finding elements: jQuery selectors: Creating html ... Read more

Redirect to first subpage

If you want to redirect the page to first subpage then create new WordPress template file in your main theme, for example redirect-to-first-subpage.php and put folowing code in it. Then edit necessary page (which will be redirected) and setup "Page Template" as "Redirect to first subpage".

Page-list

Plugin helps you to show list of pages of your web-site with [pagelist], [subpages], [siblings] and [pagelist_ext] shortcodes. Very usefull for adding sitemap or list of subpages or list of products with thumbnails on your web-site. Documentation Shortcodes [pagelist], [subpages], [siblings] are based on wp_list_pages('title_li=') function and show hierarchical tree of pages; You can use ... Read more

Embed video into post in WordPress

For adding iframe into post or page In WordPress you can use iframe plugin. It helps to add iframe with next shortcode: [iframe width="640" height="480" src="http://player.vimeo.com/video/3261363"] Or you can use oEmbed to embed video into post. The simple use is the next (remove underscore "_" after first openned embed shortcode): [embed_ width="500" height="400"]http://www.youtube.com/watch?v=A3PDXmYoF5U[/embed] You can ... Read more