June 30, 2014 at 11:25 am
#11785
Theme Horse Support Team
Keymaster
After endif semicolon is needed.
This error shows that this functions is already declared, so you are getting this error. You are not able to declare same function twice.
you need to hook function too
add_action( ‘attitude_404_content’, ‘attitude_display_404_page_content’, 10 );
Thank you!