get_template_part vs action hooks in themes
I prefer hooks, since they are more flexible: you can hook into them from your theme’s functions.php file, but also from plugins. I try to put as much logic in plugins, so that the themes contain mostly layout stuff. If you use an action hook, it is still possible to use get_template_part() in that hook … Read more