Last active
October 4, 2017 02:56
-
-
Save bdaley/6cf9ede3a814bfc9cb97915f4e29dd72 to your computer and use it in GitHub Desktop.
WordPress: Show Current Theme Template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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