file function.php not work with wordpress

Viewed 16

any function not working with localhost wordpress

enter image description here

enter image description here

enter image description here

enter image description here

1 Answers

Looking at your screenshots, it looks like you're creating the main theme or working with a child theme on WordPress.

Your functions are not working because your filename is wrong.

Currently, your file name is function.php but it should be functions.php you're missing s in the file name.

Related