fynbo
fynbo

Reputation: 20

Editing the Theme Customisation Menu

Where is the file(s) that control the appearance of the Theme Customization Menu located?

The menu that I need to edit is found under Appearance > Themes > Customize, but where is the code (file name) that creates this menu usually located.?

Upvotes: 0

Views: 201

Answers (3)

anittas joseph
anittas joseph

Reputation: 41

Please check the file wp-includes/class-wp-customize-manager.php

Upvotes: 0

Balwinder
Balwinder

Reputation: 82

You need to check wp-content/themes/your-theme/header.php

If you want to create or call menu in header then create child theme and create or copy header.php file from parent to child theme and edit accordingly

Upvotes: 0

Harsh Khare
Harsh Khare

Reputation: 515

You can find your admin menu in an Array format check their files.

  • For Appearance menu - nav-menus.php

  • For admin main menu- menu.php

    All the files located into a wp-admin folder.

I think its help you check and let me know

Upvotes: 1

Related Questions