Challenge - 5 Problems
Action Hook Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
❓ component_behavior
intermediate2:00remaining
What happens when this WordPress action hook runs?
Consider the following code snippet added to a WordPress theme's functions.php file. What will be the output on the page when the 'wp_footer' action runs?
Wordpress
<?php add_action('wp_footer', function() { echo '<p>Footer message</p>'; }); ?>
Attempts:
2 left
💡 Hint
Think about where the 'wp_footer' hook is triggered in a WordPress theme.
✗ Incorrect
The 'wp_footer' action hook is triggered just before the closing