Podcast Episode

517 – Explaining WordPress Hooks, Actions, and Filters

Announcements

Is there a plugin for that?

With more than 50,000 plugins in the WordPress repository, it’s hard to find the perfect one. Each week, I will highlight an interesting plugin from the repository.

For more great plugins, download my 50 Most Useful Plugins eBook.

[Social Sharing Block](https://wordpress.org/plugins/social-sharing-block/) is a simple plugin to allow you to add social sharing icons to your WordPress site.

Explaining WordPress Hooks, Actions and Filters

add_filter('the_title', 'first_character_capital');
function first_character_capital($title){
return strtolower($title); 
}