Changeset 349850
- Timestamp:
- 02/23/2011 04:32:31 PM (15 years ago)
- Location:
- header-cleanup/trunk
- Files:
-
- 2 edited
-
headercleanup.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
header-cleanup/trunk/headercleanup.php
r345439 r349850 4 4 Plugin URI: http://binarym.com/2010/wordpress-head-cleanup-plugin/ 5 5 Description: Remove extraneous head tags from WordPress. 6 Version: 0.0. 46 Version: 0.0.5 7 7 Author: Matt McInvale - BinaryM Inc. 8 8 Author URI: http://binarym.com/ 9 9 10 10 To Do: 11 Get sushifor lunch11 Get tacos for lunch 12 12 */ 13 13 14 if (!is_admin()) add_action('init', 'removeJankFromHeader' );14 if (!is_admin()) add_action('init', 'removeJankFromHeader', 99999); 15 15 16 16 function removeJankFromHeader() { … … 43 43 add_filter('post_comments_feed_link','headerCleanupKillCommentsRSS'); 44 44 } 45 46 if ($binaryheadercleanup['passivejs']) { 47 wp_deregister_script('l10n'); 48 } 49 50 45 51 46 52 } … … 83 89 84 90 <table class="form-table"> 91 <tr valign="top"> 92 <th scope="row">Passive Localization JavaScript</th> 93 <td><input type="checkbox" name="binaryheadercleanup[passivejs]" value="1" <?php if ($binaryheadercleanup['passivejs']) echo 'checked="checked"'; ?>/></td> 85 94 <tr valign="top"> 86 95 <th scope="row">RSD Link</th> -
header-cleanup/trunk/readme.txt
r345439 r349850 3 3 Tags: html, clean, puppies 4 4 Requires at least: 2.7 5 Tested up to: 3. 0.55 Tested up to: 3.1 6 6 Stable tag: trunk 7 7
Note: See TracChangeset
for help on using the changeset viewer.