How to support letting users add their OWN logo to a custom theme?

You can create a basic theme options page using the WordPress settings api Here is a simple example that will create an input field for the user to enter a path to the custom logo. // Add a menu for our option page add_action(‘admin_menu’, ‘prefix_myplugin_add_page’); function prefix_myplugin_add_page() { add_options_page( ‘My Theme Options’, ‘Theme Name Options’, … Read more