Last active
July 31, 2017 10:22
-
-
Save n1k1c4/483f02436075a77f35aac1adb702182f to your computer and use it in GitHub Desktop.
WordPress - Show template file name
This file contains 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('administrator')) : ?> | |
<div class="for-develop" style="position: fixed; min-width: 15%; height: 32px; background-color: #E91E63; top: 0; left: 750px; z-index: 100000; color: #fff; text-align: center; line-height: 1.8;"> | |
<?php global $template; echo basename($template); ?> | |
</div><!-- /.for-develop --> | |
<?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment