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 S … [Continue reading]
Penguin 2.0 UPDATE
"Penguin 2.0 UPDATE ... it will be much more thorough and Penguin 1.0 andara more in depth and will have an impact larger than the original Penguin 1.0" Matt Cutts, he works for the group "Search Quality" by Google, which specializes in the … [Continue reading]