Quality SEO incorporates a positive user experience, leveraging it to work in a brands favor. Here are some ways to build a great search engine experience and optimize your website to get you ranking first: Onward and Upward By carefully … [Continue reading]
Allow contributors to upload media
In case you need to allow contributors to upload media, all you need to do is to insert in functions.php the following code: [php] if ( current_user_can('contributor') && !current_user_can('upload_files') ) add_action('admin_init', … [Continue reading]
Add GD Star Rating to category and tag page
In order to add the GD Star Rating voting "stars" to category and tag pages (to be it visible) you need to add: [php]<?php if(function_exists('wp_gdsr_render_article')){ wp_gdsr_render_article(); } ?>[/php] to archive.php or loop page. … [Continue reading]
Random posts in category pages and in tag pages
In order to have the content display random in the TAG page, you need to add to tag.php before post loop the following code: [php]<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $current_tag = get_query_var( 'tag' … [Continue reading]
Contact Form 7 & Akismet
Maybe many of you do not know that you can secure your contact form page inc ase you use Contact Form 7 plugin. It's pretty simple and it takes only 5 minutes. You need to have or install 2 plugins: 1) Akismet - download here 2) Really … [Continue reading]