This error means that the function "construct_phrase" is being defined for the second time. This can have different causes:
- Your custom script defines a function with the same name before calling functions.php.
- You made an edit somehow duplicating that function in functions.php
- You are using a "include" or "require" of functions.php instead of "include_once" or "require_once" making the functions.php to be loaded twice.
And probably some more i didn't think of now.
|