Changeset 1308692
- Timestamp:
- 12/15/2015 03:32:38 AM (10 years ago)
- File:
-
- 1 edited
-
theme-inspector/trunk/theme-inspector.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
theme-inspector/trunk/theme-inspector.php
r1305876 r1308692 2 2 /* 3 3 Plugin Name: Theme Inspector 4 Plugin URI: https:// github.com/melissacabral/theme_inspector4 Plugin URI: https://wordpress.org/plugins/theme-inspector 5 5 Description: displays useful technical information on pages and posts to aid in developing Wordpress themes. Only visible to administrators. Use In Conjunction with the WP Template Hierarchy Document 6 6 Author: Melissa Cabral 7 Version: 2.2. 07 Version: 2.2.1 8 8 Author URI: http://melissacabral.com/ 9 9 */ 10 10 /** 11 * Display Theme Inspector by Melissa Cabralas Toolbar (Admin Bar) Item11 * Display Theme Inspector as Toolbar (Admin Bar) Item 12 12 * @since ver 2.0 13 13 */ … … 18 18 $args = array( 19 19 'id' => 'theme-helper', 20 'title' => 'Theme Helper',20 'title' => 'Theme Inspector', 21 21 'parent' => 'top-secondary', 22 22 'meta' => array( … … 44 44 <?php if(is_admin()){ ?> 45 45 <tr> 46 <td colspan="2"><a style="text-align:center" href="<?php echo home_url('/'); ?>">View your site to see Theme helper in action!</a></td>46 <td colspan="2"><a style="text-align:center" href="<?php echo home_url('/'); ?>">View your site to see Theme Inspector in action!</a></td> 47 47 </tr> 48 48 <?php }else{ ?> … … 94 94 <?php } //end not admin ?> 95 95 <tr class="credits"> 96 <td colspan="2">Theme Helper by <a href="https://github.com/melissacabral/theme_helper">Melissa Cabral</a>.</td>96 <td colspan="2">Theme Inspector by <a href="https://wordpress.org/plugins/theme-inspector">Melissa Cabral</a>.</td> 97 97 </tr> 98 98 <tr class="credits usewith"> … … 100 100 </tr> 101 101 </table> 102 </div><!-- End Theme Inspector by Melissa Cabral-->102 </div><!-- End Theme Inspector --> 103 103 <?php 104 104 return ob_get_clean();
Note: See TracChangeset
for help on using the changeset viewer.