How to display admin bar when using WP_USE_THEMES = false?
So I'm using WordPress in a 'themeless' manner, i.e. not using a "blog" template. My site files are in the root directory (not in the theme folder), and WordPressis installed in its own /wordpress/
directory. The only thing my theme exists for is customization of the back-end, including re-branding and custom post types. (I'm basically avoiding plug-ins and widgets and doing a bespoke implementation of WordPress)
With this set-up, is there a way I can get the admin bar to display when my clients view the front-end pages like it normally does?
NOTE: I've tried adding wp_head()
and wp_footer()
to no avail. I think this might have something to do with my custom file structure.
Topic admin-bar theme-development Wordpress
Category Web