Many people using featured images in there blog or sites. Setting default featured image using wordpress plugin for every post is not possible for some times so creating the one default image and set that default image for all the posts is really good idea. Some times If you not have the default image then it is possible to break your wordpress theme or it does not look nice without featured image. In this article I will show you how to Setting default featured image using wordpress plugin.
Setting default featured image using wordpress plugin
Setting default featured image using wordpress plugin for post is not possible for some times so creating default image, for all posts is really good idea.
But still you want to set the default featured image using following wordpress plugin.
Add a default featured image to the media settings page. This featured image will show up if no featured image is set. Simple as that.
For exceptions and to see which functions to use see the FAQ.
My chosen featured image doesn’t show, why isn’t it working?
This plugin can’t guarantee that it works. That depends on the themes. Still I want to know if it fails, so contact me
Which functions can I use to display the featured image?
The plugin uses the default WordPress functions the_post_thumbnail or get_the_post_thumbnail. has_post_thumbnail will always return true. get_post_thumbnail_id will return the ID set on the post or the DFI you set.
Can I exclude a page or give it a different image?
yes. you can exclude all kinds of things with the conditional tags. A few examples which you can paste in your functions.php
Dont use a featured image on page 5
function dfi_skip_page( $dfi_id ) {
if ( is_single( 5 ) || get_the_ID() == 5 ) {
return 0; // invalid id
}
return $dfi_id; // the original featured image id
}
add_filter('dfi_thumbnail_id', 'dfi_skip_page' );
Use a different image on the “book” posttype. The ID of the image is 12
function dfi_posttype_book( $dfi_id ) {
if ( is_singular( 'book' ) || get_post_type() == 'book' ) {
return 12; // the image id
}
return $dfi_id; // the original featured image id
}
add_filter('dfi_thumbnail_id', 'dfi_posttype_book' );
Use a different image on certain categories
function dfi_category( $dfi_id ) {
if ( has_category( 'category-slug' ) ) {
return 13; // the image id
} else if ( has_category( 'other_category' ) ) {
return 14; // the image id
}
return $dfi_id; // the original featured image id
}
add_filter('dfi_thumbnail_id', 'dfi_category' );
Can I change the HTML of the image returned?
yes you can with the filter dfi_thumbnail_html.
function dfi_add_class($html, $post_id, $default_thumbnail_id, $size, $attr) {
// add a class to the existing class list
$attr['class'] .= ' my-class';
return wp_get_attachment_image( $default_thumbnail_id, $size, false, $attr );
}
add_filter( 'dfi_thumbnail_html', 'dfi_add_class', 10, 5 );
First thing you need to do is install and activate the Default Featured Image plugin. Upon activation, the plugin adds an option under Setttings » Media to choose a default image.
Jetpack is most popular wordpress plugin. Jetpack is downloaded more then 5 millions times. we have written Jetpack by WordPress.com wordpess plugin review.
Simple, concise stats with no additional load on your server. Previously provided by WordPress.com Stats.
Email subscriptions for your blog’s posts and your post’s comments.
Social networking enabled comment system.
Likes, allowing your readers to show their appreciation of your posts.
Monitor and manage your site’s activity with Notifications in your Toolbar and on WordPress.com.
Simple, Akismet-backed contact forms.
The WP.me URL shortener.
Hovercard popups for your commenters via Gravatar.
Easily embedded media from popular sites like YouTube, Digg, and Vimeo.
The ability to post to your blog from any email client.
Integration with and automatic posting to your favorite social networks including Twitter, Facebook, Tumblr, and LinkedIn.
For the Math geeks, a simple way to include beautiful mathematical expressions on your site.
A widget for displaying recent tweets. Previously provided by Wickett Twitter Widget
Your readers can easily share your posts via email or their favorite social networks. Previously provided by the Sharedaddy WordPress plugin.
Your writing will improve thanks to After the Deadline, an artificial intelligence based spell, style, and grammar checker. Previously provided by the After the Deadline WordPress plugin.
With Carousel active, any standard WordPress galleries you have embedded in posts or pages will launch a gorgeous full-screen photo browsing experience with comments and EXIF metadata.
A CSS editor that lets you customize your site design without modifying your theme.
A mobile theme that automatically streamlines your site for visitors on mobile devices.
Mobile push notifications for new comments via WordPress mobile apps.
The ability to allow applications to securely authenticate and access your site with your permission.
Creative formats for your image galleries: mosaic, circles, squares, and a slideshow view.
Add post sliders and other highlights to your theme with Featured Content.
and many more to come!
Jetpack by WordPress.com wordpess plugin review:
This plugin is useful for wordpress hosted and self hosted plugins.
Jetpack plugin has easy to configure
You do not need to technical knowledge to configure the Jetpack
It adds multiple widgets and features to your site like plus added extras, like Contact Me forms, Subscribe to this blog via Email Form, RSS feed widgets, and enough website stats
Only bad part about plugin is, You need to worpdress account for activating this plugin
This is plugin is secure and safe because it is owned by wordpress.com itself
Some features are not in Jetpack plugin like – photon – It will add wp.com domain in every image URL.
W3 Total Cache plugin is most popular wordpress plugin. I written w3 total cache wordpress plugin review, I personally using this plugin for many years. This plugin is recommended by wordpress itself. W3 Total Cache wordpress plugin is downloaded more then 22 milions times.
w3 total cache wordpress plugin review
Following are some features of W3 Total Cache plugin W3 Total Cache:
Easy Web Performance Optimization (WPO) using caching: browser, page, object, database, minify and content delivery network support.
The only WordPress Performance Optimization (WPO) framework; designed to improve user experience and page speed.
Recommended by web hosts like: Page.ly, Synthesis, DreamHost, MediaTemple, Go Daddy, Host Gator and countless more.
Trusted by countless companies like: AT&T, stevesouders.com, mattcutts.com, mashable.com, smashingmagazine.com, makeuseof.com, yoast.com, kiss925.com, pearsonified.com, lockergnome.com, johnchow.com, ilovetypography.com, webdesignerdepot.com, css-tricks.com and tens of thousands of others.
W3 Total Cache improves the user experience of your site by increasing server performance, reducing the download times and providing transparent content delivery network (CDN) integration.
Benefits:
At least 10x improvement in overall site performance (Grade A in YSlow or significant Google Page Speed improvements) when fully configured
Improved conversion rates and “site performance” which affect your site’s rank on Google.com
WordPress Tips, Using social button will slow down your wordpress site. There are so many social button plugins. Which are so beautiful and nice plugins.
Using social button will slow down your wordpress site
But these plugin can cause wild swings in page load times and page load. Sometimes, facebook is busy and that icon slows down your page, sometimes it is twitter.
Some time admin selected so many social icons to show and it takes time to load because that many apache requests will go to server. I personally tested some blogs and They are facing same page load issue. Commonly wordpress page will load in 5 to 6 seconds without this wordpess plugin. But with these plugin it is taking 50 to 60 seconds to load the page.
It will affect to SEO of your site.
Our Test
We tested the following social icons buttons.
Twitter, Twitter (tweet), Facebook, Facebook (like), Delicious, Google Bookmarks, Google Reader, Google email, Posterous, and StumbleUpon.
All icons are failing some time and that causes page load error with your wordpress site. I tested other plugins also which are not for social sharing purpose but there were no issue with worpdress page loading.
commonly these type of plugin will load into your post, page and excerpt. If you open home page or archive page. you will face the slowness.
I am not saying not to use the social share or social button plugin in your wordpress site. But you need to think about wordpress plugins which is causing issue to your site.
I recommond following wordpress plugins which are really nice.
Normally social sharing codes provided by facebook, twitter, etc renders iframes at run-time. These iframes increases page-size and slow-down your website (on client-side).
Social buttons attract more visitors to your site. When users +1, Tweet, or Like your page, it advertises your page to their friends and followers. This plugin adds social buttons to your posts as a small sprite at first and delays loading the real buttons until the user hovers over the social buttons. It delays ~300KB of social button components by loading <6.5KB of our own script and sprite. onMouseOver activates the load of the ~300KB of social button components.
No one likes long load times, but we all want to be able to share our content via Facebook, Twitter, and other social networks. These take a long time to load. Paradox? Not anymore! With WPSocialite (utilizing David Bushell’s amazing SocialiteJS plugin [http://www.socialitejs.com/]) we can manage the loading process of our social sharing links. Load them on hover, on page scroll, and more!
Facebook, Twitter, Google Plus and LinkedIn Share buttons. Super Fast Loading, No Javascript, Only CSS. Responsive Design, Floting Sidebar Option.
The CSS Share Buttons easily allows your blog to be shared. Speedup you site with this share plugin.
Super Fast
This plugin is very light weight. As compared to other Share button plugin This plugin is super fast.
We compared with all famous share button plugin. Our Plugin load CSS from CDN.
It show very lite share button only with HTML and CSS. It does not load any javascript like other We load only one CSS file with this plugin – only 1.5kb css file.
All in One SEO Pack wordpress plugin is most downloaded plugin in wordpress. Our team written, All in One SEO Pack wordpress plugin review which is unique. It downloaded more then 14 milions times.
All in One SEO Pack wordpress plugin review
Search Engine Optimization (SEO) is an important part of any business, but also for professional bloggers and all individuals that are serious enough about how they rank on sites such as Google, Bing or Yahoo.
Here are some features of All in One SEO Pack wordpress plugin:
Some features:
Google Analytics support
Support for Custom Post Types
Advanced Canonical URLs
Fine tune Page Navigational Links
Built-in API so other plugins/themes can access and extend functionality
ONLY plugin to provide SEO Integration for WP e-Commerce sites
Nonce Security
Support for CMS-style WordPress installations
Automatically optimizes your titles for search engines
Generates META tags automatically
Avoids the typical duplicate content found on WordPress blogs
For beginners, you don’t even have to look at the options, it works out-of-the-box. Just install.
For advanced users, you can fine-tune everything
You can override any title and set any META description and any META keywords you want.
Backward-Compatibility with many other plugins, like Auto Meta, Ultimate Tag Warrior and others.
If upgrading, please back up your database first!
All in One SEO Pack wordpress plugin review:
I appreciate free, & never, until now, complain about something that I get for free, but people need to know what they are getting themselves into before they update.
If you want to improve your SEO rating and have order in all your pages and posts.
The most accessible for novice users that never fails. It is feature rich in an unassuming way.
This is a good plug-in with the basic knowledge to improve your blog’s SEO. There are more advanced SEO plug-ins but this one helps users with a basic understanding of SEO. A great plug-in to learn SEO.
All in One SEO is well tested and proven to be the only choice for numbers of Insurance Carriers, Brokers and Agencies nationwide, which sites I built.
Worth mentioning is that All in One SEO is supported by a company, not just one person, so you can rest assure that if help is needed, their support team will be there for you.
Smiles and emoticons are always important show your expressions in short way. Earlier also I posted articles about same. Here is link about that. here in this article written about animated smileys. I given very detailed information to use animated smileys and emoticons in wordpress. animated smilyes and emotions are used everywhere now in mobile device.
use animated smileys and emoticons in wordpress
By default wordpress supports some basic emoticons. Here I can suggest some very cool wordpress plugins.
Kaskus Emoticons is an emoticon set inspired by Kaskus, the Largest Indonesian Community – consisting of over a million active members from all over the world. The images which are used in this plugin are copyright of Kaskus
Speedy Smilies takes emoticons in WordPress to the next level (where it should be already and hopefully one day will). The end goal is to make smilies load faster in the browser for visitors and make them easy to insert into posts/pages for authors. In addition to the speed benefits, Speedy Smilies allows authors to easily change the appearance of emoticons using smiley sets.
Speedy Smilies is free software licensed under the GNU GPL version 3.
Tango Smileys Extended
Tango Smileys Extended (TSE) disables the built-in WordPress smileys and extends the number of available smileys from 18 to 202. The extended smileys can be input using standard emoticon shorthand, or through the CTI (Click to Insert) interface. Smileys in comments is supported and may be inserted using the standard emoticon shorthand or through the CTI interface. MCEComments is also supported.
This version of Tango Smileys Extended is for WordPress 2.8+
WordPress versions pre-2.8 are no longer supported. If you are using WordPress 2.7.x, please use Tango Smileys Extended 2.5.4.1. WordPress 2.6.x and earlier are only supported in versions of Tango Smileys Extended older than, and including, 2.5.2.8.
This addon will add a button to your visual tinymce editor for posts/pages. Clicking the button will open a popup window with over 50 professionally animated .gif smiley’s.
You can insert these smiley’s into your post/page content areas. Simply click a smiley, and it is automatically inserted into your content area.
Replaces WordPress’ smileys (based on images) with font-based emoticons (see screenshots). Font-based emoticons have some advantages:
They have the same size as the surrounding text. No more distorting the heights of lines containing smileys/emoticons. They always fit the font size.
They have the same color as the surrounding text.
The following emoticons are supported:
:):-):smile:
:(:-(:sad:
;);-):wink:
:P:-P:razz:
-.--_-:sleep:
:thumbs::thumbsup:
:devil::twisted:
:o:-o:eek:
8O8o8-O8-o:shock: (No real icon for “shock” yet. Using “eek” instead.)
:coffee:
8)8-)B)B-):cool:
:/:-/
:beer:
:D:-D:grin:
x(x-(X(X-(:angry:
:x:-x:mad: (No real icon from “mad” yet. Using “angry” instead.)
O:)0:)o:)O:-)0:-)o:-):saint:
:'(:'-(:cry:
:shoot:
^^^_^:lol:
Notes: * Emoticons must be surrounded with spaces (or other white space characters); e.g. the emoticon in that:)smile won’t be replaced * Emoticons won’t be replaced in HTML tags nor in <pre> or <code> blocks.
wp-monalisa is the plugin that smiles at you like monalisa does. place the smilies of your choice in posts, pages or comments.
There are a lot plugins for smiley support out there and some of them are really useful. Most of them don’t work out of the box and this is what wp-monalisa tries to achieve, giving you the ability to maintain your smilies and even turn them into img tags.
it’s easy and it smiles at you…what else do you want?
Features:
maintain your smilies in a separate directory
activate or deactivate smilies for posts or comments
replace smilies with img tags
extend or replace wordpress smiley replacement
while edit posts or pages, pops-up in a draggable meta-box
extends your comment form to give you visitors the freedom to smile 🙂
WordPress plugin contact form 7 is popular wordpress plugin which is download more than 11 million times. We written wordpress plugin Contact Form 7 review. This plugin which is download more than 11 million times. In every second wordpress site people used contact form 7 wp plugin. This plugin is very easy to install and easy to use.
Contact Form 7 can manage multiple contact forms, plus you can customize the form and the mail contents flexibly with simple mark-up. The form supports Ajax-powered submitting, CAPTCHA, Akismet spam filtering and so on.
Docs & Support
You can find docs, FAQ and more detailed information about Contact Form 7 oncontactform7.com. If you were unable to find the answer to your question on the FAQ or in any of the documentation, you should check the support forum on WordPress.org. If you can’t locate any topics that pertain to your particular issue, post a new topic for it.
Contact Form 7 Needs Your Support
It is hard to continue development and support for this free plugin without contributions from users like you. If you enjoy using Contact Form 7 and find it useful, please consider making a donation. Your donation will help encourage and support the plugin’s continued development and better user support.
Recommended Plugins
The following are other recommended plugins by the author of Contact Form 7.
Flamingo – With Flamingo, you can save submitted messages via contact forms in the database.
Really Simple CAPTCHA – Really Simple CAPTCHA is a simple CAPTCHA module which works well with Contact Form 7.
Bogo – Bogo is a straight-forward multilingual plugin that doesn’t cause headaches.
If you have created your own language pack, or have an update of an existing one, you can send gettext PO and MO files to me so that I can bundle it into Contact Form 7. You can download the latest POT file, and PO files in each language.
BulletProof Security and Better WP Security both wordpress plugins are used for wordpress security purpose. Both have some nice and unique features. There are wordpress hackers and they are looking to hack your wordpress sites. You should protect your wordpress sites.
BulletProof Security and Better WP Security both wordpress plugins are used for wordpress security. we explored BulletProof Security vs Better WP Security.
BulletProof Security vs Better WP Security
Better WP Security features:
Better WP Security takes the best WordPress security features and techniques and combines them in a single plugin thereby ensuring that as many security holes as possible are patched without having to worry about conflicting features or the possibility of missing anything on your site.
With one-click activation for most features as well as advanced features for experienced users Better WP Security can help protect any site.
Obscure
As most WordPress attacks are a result of plugin vulnerabilities, weak passwords, and obsolete software. Better WP Security will hide the places those vulnerabilities live keeping an attacker from learning too much about your site and keeping them away from sensitive areas like login, admin, etc.
Remove the meta “Generator” tag
Change the urls for WordPress dashboard including login, admin, and more
Completely turn off the ability to login for a given time period (away mode)
Remove theme, plugin, and core update notifications from users who do not have permission to update them
Remove Windows Live Write header information
Remove RSD header information
Rename “admin” account
Change the ID on the user with ID 1
Change the WordPress database table prefix
Change wp-content path
Removes login error messages
Display a random version number to non administrative users anywhere version is used
Protect
Just hiding parts of your site is helpful but won’t stop everything. After we hide sensitive areas of the sites we’ll protect it by blocking users that shouldn’t be there and increasing the security of passwords and other vital information.
Scan your site to instantly tell where vulnerabilities are and fix them in seconds
Ban troublesome bots and other hosts
Ban troublesome user agents
Prevent brute force attacks by banning hosts and users with too many invalid login attempts
Strengthen server security
Enforce strong passwords for all accounts of a configurable minimum role
Force SSL for admin pages (on supporting servers)
Force SSL for any page or post (on supporting servers)
Turn off file editing from within WordPress admin area
Detect and block numerous attacks to your filesystem and database
Detect
Should all the protection fail Better WP Security will still monitor your site and report attempts to scan it (automatically blocking suspicious users) as well as any changes to the filesystem that might indicate a compromise.
Detect bots and other attempts to search for vulnerabilities
Monitor filesystem for unauthorized changes
Recover
Finally, should the worst happen Better WP Security will make regular backups of your WordPress database (should you choose to do so) allowing you to get back online quickly in the event someone should compromise your site.
Create and email database backups on a customizable schedule
Other Benefits
Make it easier for users to log into a site by giving them login and admin URLs that make more sense to someone not accustomed to WordPress
Detect hidden 404 errors on your site that can affect your SEO such as bad links, missing images, etc.
Compatibility
Works on multi-site (network) and single site installations
Works with Apache, LiteSpeed or NGINX (NGINX will require you to manually edit your virtual host configuration)
Some features can be problematic if you don’t have enough RAM to support them. All my testing servers allocate 128MB to WordPress and usually don’t have any other plugins installed. I have seen issues with file check and database backups failing on servers with 64MB or less of RAM, particularly if there are many other plugins being used.
Please let us know if you would like to contribute a translation.
Warning
Please read the installation instructions and FAQ before installing this plugin. It makes some significant changes to your database and other site files which, without a proper backup, can cause problems if something goes wrong. While problems are rare, most (not all) support requests I get for this plugin involve the users failure to make a proper backup before installing.
BulletProof Security features:
htaccess Core Website Security
WordPress Website Security Protection: BulletProof Security protects your WordPress website against XSS, RFI, CRLF, CSRF, Base64, Code Injection and SQL Injection hacking attempts. One-click .htaccess WordPress security protection. Protects wp-config.php, bb-config.php, php.ini, php5.ini, install.php and readme.html with .htaccess security protection. Security Logging. HTTP Error Logging. One-click Website Maintenance Mode (HTTP 503). Additional website security checks: DB errors off, file and folder permissions check… System Info: PHP, MySQL, OS, Server, Memory Usage, IP, SAPI, DNS, Max Upload… Built-in .htaccess file editing, uploading and downloading.
Login Security & Monitoring Website Security
Login Security & Login Monitoring: Log All User Account Logins or Log Only User Account Lockouts (see Screenshot). Email alerting options allow you to choose 5 different email alerting options: Choose to have email alerts sent when a User Account is locked out, An Administrator Logs in, An Administrator Logs in and when a User Account is locked out, Any User logs in when a User Account is locked out or Do Not Send Email Alerts. See BulletProof Security Login Security & Monitoring Features for additional features and options.
Why is .htaccess Website Security So Much Better Than Any Other Type of Website Security?
The answer is very simple – .htaccess files (distributed configuration files) are processed first before any other code on your website. In other words, hackers malicious scripts are stopped by BulletProof Security .htaccess files before those scripts even have a chance to reach the php coding in WordPress. BulletProof Security uses .htaccess website security files, which are specific to Apache Linux Servers. Please read the FAQ page for Server compatibility questions.
BulletProof Security Fast and Simple with No Manual Configuration Required
The BulletProof Security WordPress Security plugin is designed to be a fast, simple and one click security plugin to add .htaccess website security protection for your WordPress website. Activate .htaccess website security and .htaccess website under maintenance modes from within your WordPress Dashboard – no FTP required. The BulletProof Security WordPress plugin is a one click security solution that creates, copies, renames, moves or writes to the provided BulletProof Security .htaccess master files. BulletProof Security protects both your Root website folder and wp-admin folder with .htaccess website security protection, as well as providing additional website security protection.
BulletProof Security allows you to add .htaccess website security protection from within the WordPress Dashboard so that you do not have to access your website via FTP or your Web Host Control Panel in order to add website security protection for your WordPress site. BulletProof Security Modes: Root .htaccess security protection, wp-admin .htaccess security protection, Deny All .htaccess self protection, WordPress default .htaccess mode and .htaccess Maintenance Mode (503 Website Under Maintenance). In BulletProof Security Mode your WordPress website is protected from XSS, RFI, CRLF, CSRF, Base64, Code Injection and SQL Injection hacking attempts.
BulletProof Security Maintenance Mode
BulletProof Security Maintenance Mode allows you to create your custom website under maintenance page within BulletProof Security and activate Maintenance Mode to put your website in maintenance mode. Maintenance Mode allows website developers or website owners to access and work on a website while a 503 Website Under Maintenance page is displayed to all other visitors to the website. Allow access to your WordPress Dashboard for only yourself or add additional IP addresses to allow mulitple IP addresses access to your WP Dashboard while in maintenance mode.
WordPress is already very secure, but every website, no matter what type of platform it is built on should have additional website security measures in place as a standard. BulletProof Security provides that additional website security protection that every website should have.
If you would like to translate the BPS plugin to your language see this BPS Plugin Language Translation Tutorial. Please include a link to your website so that we can add it here. Thank you.
Tip: If you use the Google Chrome Browser you can right mouse click in plugin pages and then click on Translate to… To translate plugin text into your Language.
BulletProof Security htaccess Core Features
One-click .htaccess website security protection from within the WP Dashboard
.htaccess security protection against XSS, RFI, CRLF, CSRF, Base64, Code Injection and SQL Injection hacking attempts
Help & FAQ page – links to BPS Guide and other detailed Help & Info pages
Extensive Read Me! jQuery Dialog Help buttons throughout the BulletProof Security plugin pages
Backup and Restore existing .htaccess files
Backup and Restore customized / modified .htaccess files
Add to, Edit, Modify the provided BulletProof Security .htaccess Master files
Create your own .htaccess Master files or code and use BulletProof Security as an .htaccess file manager
Website Developer Maintenance Mode (503 website open to Developer / Site Owner ONLY)
Log in / out of your website while in Maintenance Mode
Customizable 503 Website Under Maintenance page
HUD Success / Error message display
i18n Language Translation coding
BulletProof Security Login Security & Monitoring Features
Log All User Account Logins or Log Only User Account Lockouts
Logged DB Fields: User ID, Username, Display Name, Email, Role, Login Time, Lockout Expires, IP Address, Hostname, Request URI
Email Alerting Options: User Account is locked out, An Administrator Logs in, An Administrator Logs in and when a User Account is locked out, Any User logs in when a User Account is locked out, Do Not Send Email Alerts
Login Security Additional Options: Max Login Attempts, Automatic Lockout Time, Manual Lockout Time, Max DB Rows To Show, Turn On/Turn Off
Dynamic DB Form: Lock, Unlock, Delete
Enhanced Search: Allows you to search all of the Login Security database rows/Fields
Stand-alone Unlock Form bpsunlock.php: Unlock User Accounts without having to be logged into the WP Dashboard
Please click the Login Security Blue Read Me help button for full descriptions of all features and options.
BulletProof Security vs Better WP Security Conclusion: I used both the plugins for some time. I recommend to use the Better WP security plugin which 100% free and it has very great features.
In every second wordpress sites we used the slider or slideshow. Sliders are very important in wordpress sites. There are many requirements about different types of sliders. Here I collected some very popular jquery wordpress slider plugins. Slider plugins are required in very second wordpress websites. I tested the following wordpress plugins and it found great features..
This is a highly customizable jQuery Slider plugin. You can set its width, height, pagination and other parameters. You can use it on your post or page using schortcode
The ‘JJ NextGen JQuery Slider’ allows you to create a ‘Nivo slider’ (http://nivo.dev7studios.com/) as a widget or as a shortcode. This plugin uses the ‘NextGen Gallery’ plugin for its images.
Promotion slider is a jQuery slider that makes it easy to insert a simple slideshow, or implement multiple rotating ad zones, on a webpage. Because it is highly-customizable, you are in complete control of what shows on the slider, what shows on your promotion pages and how it all works. A simple options page and straight-forward shortcodes provide great flexibility to the average user, while power users can take advantage of special actions and filters built into the plugin to add their own customizations.
WP Orbit Slider is based around the jQuery Orbit Slider from the excellent team Zurb. It uses a custom post type for each slide and taxonomies to create slider groups. The restriction is one slider per post/page. Dont fill your pages with sliders. Use one. Make it bold and get your message across!
The Simple Nivo Slider plugin provides easy access to Gilbert Pellegrom’s excellent jQuery-based Nivo Slider. The admin panel makes it easy to tweak the most commonly used Nivo Slider options from within WordPress.
Cyclone Slider 2 follows the keep it simple mantra. It leverages WordPress’ built-in features. It uses custom post for the slideshow, custom fields to store settings, and media uploader for the images. It also uses a template system that allows developers to easily customize the slideshow to their needs. Its simple yet flexible.
Features:
Very easy to use interface! Blends seamlessly with your WordPress workflow.
Supports image, video, and custom HTML slides.
Powered by Cycle 2, the most flexible jQuery slideshow plugin.
A template system that allows developers to easily customize the slideshows.
Customizable tile transition effects.
Ability to add per-slide transition effects.
Unlimited slideshows.
Unique settings for each slideshow.
Supports random slide order.
Shortcode for displaying slideshows anywhere in your site.
Ability to import images from NextGEN (NextGEN must be installed and active).
Ability to use qTranslate quick tags for slide title and descriptions (qTranslate must be installed and active).
Allows title and alt to be specified for each slide images.
Comes with a widget to display your slideshow easily in widget areas.
Do not use many wordpress plugins in website for SEO. Plugin will slow down your wordpress site. There are several nice plugins also which we need to use.. There are so many wordpress plugins which are free to download. There are more than 21500 wordpress plugins till date of jan 2013. There are several nice plugins also which we need to use.
Do not use many wordpress plugins in website for SEO
You have more than 30+ plugins then that plugin will execute the extra sql queries while opening each and every page. Depends on your wordpress plugins which is installed on your site. your site load slowly.
Some free plugins will ad the unnecessary code in your site
Some wordpress plugins add the some unnecessary JavaScript and PHP code to your site. Some plugins will use your site for their advertising purpose. So first check the plugin review.
Some wordpress plugins are not safe to install
Some wordpress plugins are not secured to install in site. It may cause the security issue. Some plugins are easy target for hackers. You should read the some review about plugin before start using in your site.
Some wordpress plugin will cause issues in your site
Before installing the wordpress plugins you should create development or test site and on development site you should first try to install the new wordpress plugins. After that you should install on current site. Some plugins will cause the jQuery conflicts in your site.