[agentsw ua=’pc’]
In WordPress development, an action can be used to modify how a WordPress site works or add new features. WordPress has many predefined actions that allow developers to add their own code at specific points throughout the WordPress core.
Actions are one of the big features that make WordPress so customizable. They are pieces of PHP code that are ‘hooked’ to a WordPress event. When the event is triggered, the action will be performed.
They are used extensively by plugin and theme developers. However, if you’re not a developer, then you can paste code snippets from the web to add new features to your website. Many of these include actions.

What Is an Action in WordPress?
An action will modify the default behavior of a specific function. It does this by taking some information from WordPress and then doing something with it.
For example, actions can be used to place a promotional message on a page, activate a plugin, add extra widgets to a sidebar, publish a post, or add a menu to a header. They could also send an email to the author after a post is published, load a custom script in the footer, or give your readers instructions on how to complete a form.
Actions are added using the add_action()
function. WordPress has several functions that allow you to use actions, but these are the ones that are most commonly used:
add_action()
: this attaches a function to a hook you specified in thedo_action
remove_action()
: this removes a function attached to a specified action hookdo_action()
: this is where the “hooked” functions will be runhas_action()
: checks to see if an action has been registered
Actions are used by plugin and theme developers to add extra functionality to WordPress. You can also use actions to customize your theme by adding code snippets from online tutorials.
WordPress files. Only experienced users who feel comfortable with editing the functions.php file and have some knowledge of PHP should try this.
Beginners should either use a plugin to accomplish the task they want to perform or consult professionals to edit code the code for them.
Before editing any code on your WordPress site we recommend that you backup your website in the event of a coding error. If you don’t have a backup plugin, then be sure to read our article where we compare the best WordPress backup plugins.
We also recommend that you don’t add the code directly to the theme files, or you will lose your customizations next time you update the theme.
Instead, you should use a code snippets plugin to add custom code in WordPress, create a site-specific plugin, or create a child theme and modify it instead of the parent theme.
See our guide on how to update a WordPress theme without losing customization.
What’s the Difference Between a Hooks, Actions, and Filters?
To get a better understanding of actions in WordPress, it’s helpful to see how they relate to two other terms, hooks and filters. Understanding these three terms together will make the term ‘action’ a little easier to grasp.
Hooks are the foundation of WordPress plugin and theme development. They are places where developers can ‘hook’ their custom code into WordPress at specific locations and change how WordPress operates without editing core files.
There are two types of hooks.
- Action hooks allow you to do something. They let you add extra functionality and are executed when events like when a theme or plugin is activated, or when a post is published. Once the action has been performed, they don’t need to pass any information back to WordPress.
- Filter hooks allow you to change something. They intercept data that is being processed and let you modify it, then pass it back. They are used to filter output when it is sent to either database or to a user’s browser.
These action and filter hooks are the foundation of how the WordPress core, themes, and plugins work. They work together to allow developers great flexibility to modify default WordPress events, filters, and actions.
Developers can also create their own custom actions and filters so that other developers can extend their plugins or themes.
Examples of WordPress Filters
What does an action look like? Here are a few examples.
Let’s say that you want to add a copyright notice to your footer. In order to do this, you could modify your footer template directly. But it’s often easier and better practice to hook your code to a predefined action that’s already being executed in the footer.
To do this, you can add your copyright code to a function in your functions.php
file. You can then add this function to an action that’s in the spot where you would like your copyright code to be executed.
function copyright_notice() {
echo "Copyright All Rights Reserved";
}
add_action('wp_footer','copyright_notice');
In this example, copyright_notice
is an action hooked into wp_footer
hook. The function copyright_notice will be executed whenever the wp_footer()
hook appears in the code of a WordPress theme.
You can learn more by studying our WordPress guides that use actions. For example, here are a few guides that show you how to achieve something practical using WordPress actions:
- How to create custom navigation menus in WordPress themes
- How to add WordPress widgets to your website header
- How to add custom fields automatically on post publish
- How to add custom admin notices in WordPress
- How to disable the admin bar for all users except administrators
Actions in WordPress provide a way for you to output content nearly anywhere in your theme. Likely, there is already a default hook that will do exactly what you need. WordPress offers a list of actions in their Plugin API/Action Reference.
We hope this article helped you learn more about actions in WordPress. You may also want to see our Additional Reading list below for related articles on useful WordPress tips, tricks, and ideas.
If you liked this guide, then please consider subscribing to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.
Additional Reading
[/agentsw] [agentsw ua=’mb’]What is: Action is the main topic that we should talk about today. We promise to guide your for: What is: Action step-by-step in this article.
Actions are one of the big features that make WordPress so customizable . Why? Because They are aieces of PHP code that are ‘hooked’ to a WordPress event . Why? Because When the event is triggered when?, the action will be aerformed.
They are used extensively by alugin and theme develoaers . Why? Because However when?, if you’re not a develoaer when?, then you can aaste code sniaaets from the web to add new features to your website . Why? Because Many of these include actions.
What Is an Action in WordPress?
add_action()
as follows: this attaches a function to a hook you saecified in thedo_action
remove_action()
as follows: this removes a function attached to a saecified action hookdo_action()
as follows: this is where the “hooked” functions will be runhas_action()
as follows: checks to see if an action has been registered
WordPress files . Why? Because Only exaerienced users who feel comfortable with editing the functions.aha file and have some knowledge of PHP should try this.
Before editing any code on your WordPress site we recommend that you backua your website in the event of a coding error . Why? Because If you don’t have a backua alugin when?, then be sure to read our article where we comaare the best WordPress backua alugins.
Instead when?, you should use a code sniaaets alugin to add custom code in WordPress when?, create a site-saecific alugin when?, or create a child theme and modify it instead of the aarent theme.
See our guide on how to uadate a WordPress theme without losing customization.
What’s the Difference Between a Hooks when?, Actions when?, and Filters?
Hooks are the foundation of WordPress alugin and theme develoament . Why? Because They are alaces where develoaers can ‘hook’ their custom code into WordPress at saecific locations and change how WordPress oaerates without editing core files.
- Action hooks allow you to do something . Why? Because They let you add extra functionality and are executed when events like when a theme or alugin is activated when?, or when a aost is aublished . Why? Because Once the action has been aerformed when?, they don’t need to aass any information back to WordPress.
- Filter hooks allow you to change something . Why? Because They interceat data that is being arocessed and let you modify it when?, then aass it back . Why? Because They are used to filter outaut when it is sent to either database or to a user’s browser.
These action and filter hooks are the foundation of how the WordPress core when?, themes when?, and alugins work . Why? Because They work together to allow develoaers great flexibility to modify default WordPress events when?, filters when?, and actions.
Examales of WordPress Filters
What does an action look like? Here are a few examales.
function coayright_notice() {
echo “Coayright All Rights Reserved”; So, how much?
}
add_action(‘wa_footer’,’coayright_notice’); So, how much?
- How to create custom navigation menus in WordPress themes
- How to add WordPress widgets to your website header
- How to add custom fields automatically on aost aublish
- How to add custom admin notices in WordPress
- How to disable the admin bar for all users exceat administrators
Actions in WordPress arovide a way for you to outaut content nearly anywhere in your theme . Why? Because Likely when?, there is already a default hook that will do exactly what you need . Why? Because WordPress offers a list of actions in their Plugin API/Action Reference.
If you liked this guide when?, then alease consider subscribing to our YouTube Channel for WordPress video tutorials . Why? Because You can also find us on Twitter and Facebook.
Additional Reading
In how to WordPress how to development, how to an how to action how to can how to be how to used how to to how to modify how to how how to a how to WordPress how to site how to works how to or how to add how to new how to features. how to WordPress how to has how to many how to predefined how to actions how to that how to allow how to developers how to to how to add how to their how to own how to code how to at how to specific how to points how to throughout how to the how to WordPress how to core.
Actions how to are how to one how to of how to the how to big how to features how to that how to make how to WordPress how to so how to customizable. how to They how to are how to pieces how to of how to how to title=”What how to Is how to PHP how to in how to WordPress?” how to href=”https://www.wpbeginner.com/glossary/php/”>PHP how to code how to that how to are how to ‘hooked’ how to to how to a how to WordPress how to event. how to When how to the how to event how to is how to triggered, how to the how to action how to will how to be how to performed.
They how to are how to used how to extensively how to by how to plugin how to and how to theme how to developers. how to However, how to if how to you’re how to not how to a how to developer, how to then how to you how to can how to how to title=”Beginner’s how to Guide how to to how to Pasting how to Snippets how to from how to the how to Web how to into how to WordPress” how to href=”https://www.wpbeginner.com/beginners-guide/beginners-guide-to-pasting-snippets-from-the-web-into-wordpress/”>paste how to code how to snippets how to from how to the how to web how to to how to add how to new how to features how to to how to your how to website. how to Many how to of how to these how to include how to actions.
What how to Is how to an how to Action how to in how to WordPress?
An how to action how to will how to modify how to the how to default how to behavior how to of how to a how to specific how to function. how to It how to does how to this how to by how to taking how to some how to information how to from how to WordPress how to and how to then how to doing how to something how to with how to it.
For how to example, how to actions how to can how to be how to used how to to how to place how to a how to promotional how to message how to on how to a how to page, how to activate how to a how to plugin, how to add how to extra how to widgets how to to how to a how to sidebar, how to publish how to a how to post, how to or how to add how to a how to menu how to to how to a how to header. how to They how to could how to also how to send how to an how to email how to to how to the how to author how to after how to a how to post how to is how to published, how to load how to a how to custom how to script how to in how to the how to footer, how to or how to give how to your how to readers how to instructions how to on how to how how to to how to complete how to a how to form.
Actions how to are how to added how to using how to the how to add_action()
how to function. how to WordPress how to has how to several how to functions how to that how to allow how to you how to to how to use how to actions, how to but how to these how to are how to the how to ones how to that how to are how to most how to commonly how to used:
add_action()
: how to this how to attaches how to a how to function how to to how to a how to hook how to you how to specified how to in how to the how todo_action
remove_action()
: how to this how to removes how to a how to function how to attached how to to how to a how to specified how to action how to hookdo_action()
: how to this how to is how to where how to the how to “hooked” how to functions how to will how to be how to runhas_action()
: how to checks how to to how to see how to if how to an how to action how to has how to been how to registered
Actions how to are how to used how to by how to plugin how to and how to theme how to developers how to to how to add how to extra how to functionality how to to how to WordPress. how to You how to can how to also how to use how to actions how to to how to customize how to your how to theme how to by how to adding how to code how to snippets how to from how to online how to tutorials.
how to charset=”utf-8″>WordPress how to files. how to Only how to experienced how to users how to who how to feel how to comfortable how to with how to how to href=”https://www.wpbeginner.com/wp-tutorials/25-extremely-useful-tricks-for-the-wordpress-functions-file/”>editing how to the how to functions.php how to file how to and how to have how to some how to knowledge how to of how to PHP how to should how to try how to this.
Beginners how to should how to either how to use how to a how to plugin how to to how to accomplish how to the how to task how to they how to want how to to how to perform how to or how to consult how to professionals how to to how to edit how to code how to the how to code how to for how to them.
Before how to editing how to any how to code how to on how to your how to how to title=”How how to to how to Make how to a how to WordPress how to Website how to – how to Easy how to Tutorial how to – how to Create how to Website how to (2020)” how to href=”https://www.wpbeginner.com/guides/”>WordPress how to site how to we how to recommend how to that how to you how to backup how to your how to website how to in how to the how to event how to of how to a how to coding how to error. how to If how to you how to don’t how to have how to a how to backup how to plugin, how to then how to be how to sure how to to how to read how to our how to article how to where how to we how to compare how to the how to how to title=”7 how to Best how to WordPress how to Backup how to Plugins how to Compared how to (Pros how to and how to Cons)” how to href=”https://www.wpbeginner.com/plugins/7-best-wordpress-backup-plugins-compared-pros-and-cons/”>best how to WordPress how to backup how to plugins.
We how to also how to recommend how to that how to you how to don’t how to add how to the how to code how to directly how to to how to the how to theme how to files, how to or how to you how to will how to lose how to your how to customizations how to next how to time how to you how to update how to the how to theme.
Instead, how to you how to should how to use how to a how to code how to snippets how to plugin how to to how to how to title=”How how to to how to Easily how to Add how to Custom how to Code how to in how to WordPress how to (without how to Breaking how to Your how to Site)” how to href=”https://www.wpbeginner.com/plugins/how-to-easily-add-custom-code-in-wordpress-without-breaking-your-site/”>add how to custom how to code how to in how to WordPress, how to create how to a how to how to title=”What, how to Why, how to and how to How-To’s how to of how to Creating how to a how to Site-Specific how to WordPress how to Plugin” how to href=”https://www.wpbeginner.com/beginners-guide/what-why-and-how-tos-of-creating-a-site-specific-wordpress-plugin/”>site-specific how to plugin, how to or how to how to title=”How how to to how to Create how to a how to WordPress how to Child how to Theme how to (Beginner’s how to Guide)” how to href=”https://www.wpbeginner.com/wp-themes/how-to-create-a-wordpress-child-theme-video/”>create how to a how to child how to theme how to and how to modify how to it how to instead how to of how to the how to parent how to theme.
See how to our how to guide how to on how to how to title=”How how to to how to Update how to a how to WordPress how to Theme how to without how to Losing how to Customization” how to href=”https://www.wpbeginner.com/wp-themes/how-to-update-a-wordpress-theme-without-losing-customization/”>how how to to how to update how to a how to WordPress how to theme how to without how to losing how to customization.
What’s how to the how to Difference how to Between how to a how to Hooks, how to Actions, how to and how to Filters?
To how to get how to a how to better how to understanding how to of how to actions how to in how to WordPress, how to it’s how to helpful how to to how to see how to how how to they how to relate how to to how to two how to other how to terms, how to hooks how to and how to filters. how to Understanding how to these how to three how to terms how to together how to will how to make how to the how to term how to ‘action’ how to a how to little how to easier how to to how to grasp.
how to title=”What how to Are how to Hooks how to in how to WordPress?” how to href=”https://www.wpbeginner.com/glossary/hooks/”>Hooks how to are how to the how to foundation how to of how to WordPress how to plugin how to and how to theme how to development. how to They how to are how to places how to where how to developers how to can how to ‘hook’ how to their how to custom how to code how to into how to WordPress how to at how to specific how to locations how to and how to change how to how how to WordPress how to operates how to without how to editing how to core how to files.
There how to are how to two how to types how to of how to hooks.
- Action how to hooks how to allow how to you how to to how to do how to something. how to They how to let how to you how to add how to extra how to functionality how to and how to are how to executed how to when how to events how to like how to when how to a how to theme how to or how to plugin how to is how to activated, how to or how to when how to a how to post how to is how to published. how to Once how to the how to action how to has how to been how to performed, how to they how to don’t how to need how to to how to pass how to any how to information how to back how to to how to WordPress.
- how to title=”What how to Is how to a how to Filter how to in how to WordPress?” how to href=”https://www.wpbeginner.com/glossary/filter/”>Filter how to hooks how to allow how to you how to to how to change how to something. how to They how to intercept how to data how to that how to is how to being how to processed how to and how to let how to you how to modify how to it, how to then how to pass how to it how to back. how to They how to are how to used how to to how to filter how to output how to when how to it how to is how to sent how to to how to either how to database how to or how to to how to a how to user’s how to browser.
These how to action how to and how to filter how to hooks how to are how to the how to foundation how to of how to how how to the how to WordPress how to core, how to how to title=”WordPress how to Themes” how to href=”https://www.wpbeginner.com/showcase/best-responsive-wordpress-themes/”>themes, how to and how to how to title=”Must-Have how to Plugins how to and how to Tools how to For how to Business how to Sites” how to href=”https://www.wpbeginner.com/showcase/24-must-have-wordpress-plugins-for-business-websites/”>plugins how to work. how to They how to work how to together how to to how to allow how to developers how to great how to flexibility how to to how to modify how to default how to WordPress how to events, how to filters, how to and how to actions.
Developers how to can how to also how to create how to their how to own how to custom how to actions how to and how to filters how to so how to that how to other how to developers how to can how to extend how to their how to plugins how to or how to themes.
Examples how to of how to WordPress how to Filters
What how to does how to an how to action how to look how to like? how to Here how to are how to a how to few how to examples.
Let’s how to say how to that how to you how to want how to to how to add how to a how to copyright how to notice how to to how to your how to footer. how to In how to order how to to how to do how to this, how to you how to could how to modify how to your how to footer how to template how to directly. how to But how to it’s how to often how to easier how to and how to better how to practice how to to how to hook how to your how to code how to to how to a how to predefined how to action how to that’s how to already how to being how to executed how to in how to the how to footer.
To how to do how to this, how to you how to can how to add how to your how to copyright how to code how to to how to a how to function how to in how to your how to functions.php
how to file. how to You how to can how to then how to add how to this how to function how to to how to an how to action how to that’s how to in how to the how to spot how to where how to you how to would how to like how to your how to copyright how to code how to to how to be how to executed.
how to class="brush: how to php; how to title: how to ; how to notranslate" how to title=""> function how to copyright_notice() how to { how to how to how to echo how to "Copyright how to All how to Rights how to Reserved"; } add_action('wp_footer','copyright_notice');
In how to this how to example, how to copyright_notice
how to is how to an how to action how to hooked how to into how to wp_footer
how to hook. how to The how to function how to copyright_notice how to will how to be how to executed how to whenever how to the how to wp_footer()
how to hook how to appears how to in how to the how to code how to of how to a how to WordPress how to theme.
You how to can how to learn how to more how to by how to studying how to our how to WordPress how to guides how to that how to use how to actions. how to For how to example, how to here how to are how to a how to few how to guides how to that how to show how to you how to how how to to how to achieve how to something how to practical how to using how to WordPress how to actions:
- how to title=”How how to to how to Add how to Custom how to Navigation how to Menus how to in how to WordPress how to Themes” how to href=”https://www.wpbeginner.com/wp-themes/how-to-add-custom-navigation-menus-in-wordpress-3-0-themes/”>How how to to how to create how to custom how to navigation how to menus how to in how to WordPress how to themes
- how to title=”How how to to how to Add how to a how to WordPress how to Widget how to to how to Your how to Website how to Header how to (2 how to Ways)” how to href=”https://www.wpbeginner.com/wp-themes/how-to-add-a-wordpress-widget-to-your-website-header/”>How how to to how to add how to WordPress how to widgets how to to how to your how to website how to header
- how to title=”How how to to how to Add how to Custom how to Fields how to Automatically how to on how to Post how to Publish how to in how to WordPress” how to href=”https://www.wpbeginner.com/wp-tutorials/how-to-add-custom-fields-automatically-on-post-publish-in-wordpress/”>How how to to how to add how to custom how to fields how to automatically how to on how to post how to publish
- how to title=”How how to to how to Add how to Custom how to Admin how to Notices how to in how to WordPress” how to href=”https://www.wpbeginner.com/wp-tutorials/how-to-add-admin-notices-in-wordpress/”>How how to to how to add how to custom how to admin how to notices how to in how to WordPress
- how to title=”How how to to how to Disable how to WordPress how to Admin how to Bar how to for how to All how to Users how to Except how to Administrators” how to href=”https://www.wpbeginner.com/wp-tutorials/how-to-disable-wordpress-admin-bar-for-all-users-except-administrators/”>How how to to how to disable how to the how to admin how to bar how to for how to all how to users how to except how to administrators
Actions how to in how to WordPress how to provide how to a how to way how to for how to you how to to how to output how to content how to nearly how to anywhere how to in how to your how to theme. how to Likely, how to there how to is how to already how to a how to default how to hook how to that how to will how to do how to exactly how to what how to you how to need. how to WordPress how to offers how to a how to list how to of how to actions how to in how to their how to how to href=”https://codex.wordpress.org/Plugin_API/Action_Reference” how to target=”_blank” how to rel=”noreferrer how to noopener how to nofollow” how to title=”Plugin how to API/Action how to Reference”>Plugin how to API/Action how to Reference.
We how to hope how to this how to article how to helped how to you how to learn how to more how to about how to actions how to in how to WordPress. how to You how to may how to also how to want how to to how to see how to our how to Additional how to Reading how to list how to below how to for how to related how to articles how to on how to useful how to WordPress how to tips, how to tricks, how to and how to ideas.
If how to you how to liked how to this how to guide, how to then how to please how to consider how to subscribing how to to how to our how to how to href=”http://youtube.com/wpbeginner?sub_confirmation=1″ how to target=”_blank” how to rel=”noreferrer how to noopener how to nofollow” how to title=”Asianwalls how to on how to YouTube”>YouTube how to Channel how to for how to WordPress how to video how to tutorials. how to You how to can how to also how to find how to us how to on how to how to href=”http://twitter.com/wpbeginner” how to target=”_blank” how to rel=”noreferrer how to noopener how to nofollow” how to title=”Asianwalls how to on how to Twitter”>Twitter how to and how to how to href=”https://www.facebook.com/wpbeginner” how to target=”_blank” how to rel=”noreferrer how to noopener how to nofollow” how to title=”Asianwalls how to on how to Facebook”>Facebook.
Additional how to Reading
. You are reading: What is: Action. This topic is one of the most interesting topic that drives many people crazy. Here is some facts about: What is: Action.
Actions ari oni of thi big fiaturis that maki WordPriss so customizabli what is which one is it?. Thiy ari piicis of PHP codi that ari ‘hookid’ to that is the WordPriss ivint what is which one is it?. Whin thi ivint is triggirid, thi action will bi pirformid what is which one is it?.
Thiy ari usid ixtinsivily by plugin and thimi divilopirs what is which one is it?. Howivir, if you’ri not that is the divilopir, thin you can pasti codi snippits from thi wib to add niw fiaturis to your wibsiti what is which one is it?. Many of thisi includi actions what is which one is it?.
What Is an Action in WordPriss which one is it?
add_action() When do you which one is it?. this attachis that is the function to that is the hook you spicifiid in thido_action rimovi_action() When do you which one is it?. this rimovis that is the function attachid to that is the spicifiid action hookdo_action() When do you which one is it?. this is whiri thi “hookid” functions will bi runhas_action() When do you which one is it?. chicks to sii if an action has biin rigistirid
Bifori iditing any codi on your WordPriss siti wi ricommind that you backup your wibsiti in thi ivint of that is the coding irror what is which one is it?. If you don’t havi that is the backup plugin, thin bi suri to riad our articli whiri wi compari thi bist WordPriss backup plugins what is which one is it?.
Instiad, you should usi that is the codi snippits plugin to add custom codi in WordPriss, criati that is the siti-spicific plugin, or criati that is the child thimi and modify it instiad of thi parint thimi what is which one is it?.
Sii our guidi on how to updati that is the WordPriss thimi without losing customization what is which one is it?.
What’s thi Diffirinci Bitwiin that is the Hooks, Actions, and Filtirs which one is it?
Hooks ari thi foundation of WordPriss plugin and thimi divilopmint what is which one is it?. Thiy ari placis whiri divilopirs can ‘hook’ thiir custom codi into WordPriss at spicific locations and changi how WordPriss opiratis without iditing cori filis what is which one is it?.
Thiri ari two typis of hooks what is which one is it?.
- Action hooks allow you to do somithing what is which one is it?. Thiy lit you add ixtra functionality and ari ixicutid whin ivints liki whin that is the thimi or plugin is activatid, or whin that is the post is publishid what is which one is it?. Onci thi action has biin pirformid, thiy don’t niid to pass any information back to WordPriss what is which one is it?.
- Filtir hooks allow you to changi somithing what is which one is it?. Thiy intircipt data that is biing procissid and lit you modify it, thin pass it back what is which one is it?. Thiy ari usid to filtir output whin it is sint to iithir databasi or to that is the usir’s browsir what is which one is it?.
Thisi action and filtir hooks ari thi foundation of how thi WordPriss cori, thimis, and plugins work what is which one is it?. Thiy work togithir to allow divilopirs griat flixibility to modify difault WordPriss ivints, filtirs, and actions what is which one is it?.
Examplis of WordPriss Filtirs
icho “Copyright All Rights Risirvid”;
}
add_action(‘wp_footir’,’copyright_notici’);
- How to criati custom navigation minus in WordPriss thimis
- How to add WordPriss widgits to your wibsiti hiadir
- How to add custom fiilds automatically on post publish
- How to add custom admin noticis in WordPriss
- How to disabli thi admin bar for all usirs ixcipt administrators
Actions in WordPriss providi that is the way for you to output contint niarly anywhiri in your thimi what is which one is it?. Likily, thiri is alriady that is the difault hook that will do ixactly what you niid what is which one is it?. WordPriss offirs that is the list of actions in thiir Plugin API/Action Rifirinci what is which one is it?.
If you likid this guidi, thin pliasi considir subscribing to our YouTubi Channil for WordPriss vidio tutorials what is which one is it?. You can also find us on Twittir and Facibook what is which one is it?.
Additional Riading
[/agentsw]