Can anyone help me to get this answer with a small example as I have been trying to be cleared about this two things.
Leave a Reply
You must be logged in to post a comment.
Can anyone help me to get this answer with a small example as I have been trying to be cleared about this two things.
You must be logged in to post a comment.
According to, and elaborating on the WordPress Codex:
Plugins
So this should be thought of as a way of extending WP’s underlying / core functionality. Remember, WP’s Roots is that of a blogging CMS, but developers over the years have been hell bent on making it do anything and everything treating WP kind of like a framework, but not to be confused with one. For example, WordPress does not have a contact form built in for users, therefore I can plug in a 3rd party module which will permit the administrator to set up and use such functionality.
Widgets
This is not as straight forward due to the concept being quite abstract. Think of a widget of extending the template dynamically by allowing a webmaster to deploy 3rd party plugins (as well as default plugins). Developers tend to use such functionality to display information that is not mission critical, non intrusive and easy to use / manipulate.
However, to clarify, you don’t necessarily require widgets to use plugins. In the case you use Akismet, it will simply extend WP to prevent against spam without ever displaying anything to the user.