This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Task 2 - Average product price. | |
| * | |
| * Returns the average of an array of numeric prices, rounded to 2 decimals. | |
| * If the array is empty (or has no valid numbers), returns 0. | |
| */ | |
| function average_price( array $prices ) { | |
| // Filter to numeric values only so a stray null/string doesn't blow things up. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Task 1 - Add a "Company Name" custom field to the WP user profile, | |
| * save it on update, and show it on the admin dashboard. | |
| * | |
| * Drop this in a small plugin file or paste into functions.php of the | |
| * active theme. Tested on WP 6.x. | |
| */ | |
| // 1) Render the field on the profile screens. |