Hello all, I am developing a website using Wordpress, thus can someone guide me on how and where to insert the keywords for SEO purposes. Many thanks in advance. Terence
you can use SEO plugins like all in one seo or add this into header.php between head tags and customize it: <title> <?php if ( is_home() ) { ?><? bloginfo('name'); ?><?php } ?> <?php if ( is_search() ) { ?><? the_search_query(''); ?><?php } ?> <?php if ( is_author() ) { ?><? author_nicename(''); ?><?php } ?> <?php if ( is_single() ) { ?><?php wp_title(''); ?><?php } ?> <?php if ( is_page() ) { ?><?php wp_title(''); ?><?php } ?> <?php if ( is_category() ) { ?><?php single_cat_title(); ?><?php } ?> <?php if ( is_month() ) { ?><?php the_time('F'); ?><?php } ?> <?php if ( is_tag() ) { ?><?single_tag_title(''); ?><?php } ?> </title> <meta name="description" content=" <?php if ( is_home() ) { ?><?php bloginfo('description'); ?><?php } ?> <?php if ( is_search() ) { ?><? the_search_query(''); ?><?php } ?> <?php if ( is_author() ) { ?><? author_nicename(''); ?><?php } ?> <?php if ( is_single() ) { ?><?php wp_title(''); ?><?php } ?> <?php if ( is_page() ) { ?><?php wp_title(''); ?><?php } ?> <?php if ( is_category() ) { ?><?php echo trim(strip_tags(category_description())); ?><?php } ?> <?php if ( is_month() ) { ?><?php the_time('F'); ?><?php } ?> <?php if ( is_tag() ) { ?><?single_tag_title(''); ?><?php } ?> " /> PHP: