Skip to content

Instantly share code, notes, and snippets.

@bdaley
Last active October 4, 2017 02:56
Show Gist options
  • Save bdaley/6cf9ede3a814bfc9cb97915f4e29dd72 to your computer and use it in GitHub Desktop.
Save bdaley/6cf9ede3a814bfc9cb97915f4e29dd72 to your computer and use it in GitHub Desktop.
WordPress: Show Current Theme Template
<?php if(current_user_can( 'manage_options' )): ?>
<!-- A little help for admin users + devs :) -->
<div style="position:fixed;width:100vw;color:#fff;background-color:rgba(0,0,0,.8);z-index:1000;bottom:0;padding:1em;">Theme Template: <?php global $template; echo basename($template); ?></div>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment