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 | |
| /* | |
| Plugin Name: Remove WPMU Notification Plugin Nag | |
| Plugin URI: http://wp.me/p1Aj2B-6g | |
| Description: WPMU started trying to force people that use plugins by their developers to install a Notification plugin by making a persistent notification bug the admins. This removes that annoying piece. | |
| Version: 1.0 | |
| Author: Trae Blain | |
| Author URI: http://traeblain.com | |
| License: GPL2 | |
| */ |
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 | |
| /* | |
| Plugin Name: HowTo Plugin | |
| Plugin URI: | |
| Description: This Plugin demonstrates how you can build your own plugin pages using the WordPress provided draggable metaboxes, requires WordPress 2.7 version, supports WordPress 2.8 changed boxing layout engine | |
| Author: Heiko, Frank | |
| Author URI: http://bueltge.de | |
| Version: 0.1 | |
| License: |
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 | |
| /* | |
| Plugin Name: WP-Syntax Colorizer | |
| Plugin URI: http://articles.akgfx.com/2008/04/wp-syntax-colorizer/ | |
| Description: A plugin allowing you to easily set all the WP-Syntax color settings in one place. WP-Syntax was developed by Ryan McGeary. | |
| Author: Arash Keshmirian | |
| Version: 0.1 | |
| Author URI: http://www.akgfx.com/ | |
| */ |
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 | |
| /* | |
| Plugin Name: WP Advanced Code Editor | |
| Plugin URI: http://www.techlyzer.com/wp-advanced-code-editor | |
| Description: Integrates the EasyArea advanced code editor to WordPress, complete with syntax hilighting, line numbering, and full screen editing! Not compatabile with the WYSIWYG editor. Turn it off! | |
| Author: John Kolbert | |
| Version: 1.0 | |
| Author URI: http://www.techlyzer.com/ | |
| Copyright Notice |
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
| /* | |
| ColorBox Core Style: | |
| The following CSS is consistent between example themes and should not be altered. | |
| */ | |
| #colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:10001; overflow:hidden;} | |
| #cboxOverlay{position:fixed; width:100%; height:100%;} | |
| #cboxMiddleLeft, #cboxBottomLeft{clear:left;} | |
| #cboxContent{position:relative;} | |
| #cboxLoadedContent{overflow:auto;} | |
| #cboxTitle{margin:0;} |
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 | |
| /** | |
| * Plugin Name: Delay post publishing | |
| * Plugin URI: http://unserkaiser.com | |
| * Description: Only allows publishing a post if the user registered one week ago. | |
| * Version: 0.1 | |
| * Author: Franz Josef Kaiser | |
| * Author URI: http://unserkaiser.com | |
| */ | |
| // Not a WordPress context? Stop. Why? Ask @toscho |
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 | |
| // Add social proof numbers to footer (repositioned to top of page via CSS) | |
| function add_social_proof() { ?> | |
| <div id="social-proof"> | |
| <ul> | |
| <li class="facebook"><a href="YOUR_FACEBOOK_PAGE_URL" target="_blank" title="Disrupting the Rabblement on Facebook"><?php facebook_fan_count() ?> Fans</a></li> | |
| <li class="twitter"><a href="YOUR_TWITTER_PROFILE_URL" target="_blank" title="Follow Niall on Twitter"><?php twitter_follower_count() ?> Followers</a></li> | |
| <li class="email"><a href="YOUR_SUBSCRIBER_FORM_URL" target="_blank" title="Subscribe to email updates"><?php subscriber_count() ?> Subscribers</a></li> | |
| </ul> | |
| </div> |
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 | |
| /* Add a social media share box to your WordPress site. | |
| If you want the email sharing, you'll need to install WP-Email: http://wordpress.org/extend/plugins/wp-email/ | |
| Insert <?php s25_sharing_caring(); ?> to your template where you want the box to appear. Must be used inside the Loop. | |
| Facebook Like Button code can be built here: http://developers.facebook.com/docs/reference/plugins/like/ | |
| Tweet Button code: https://dev.twitter.com/docs/tweet-button | |
| LinkedIn Share Button: http://developer.linkedin.com/plugins/share-plugin-generator | |
| Google Plus 1: http://www.google.com/webmasters/+1/button/ |
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 ($_GET['key'] != '123456') | |
| die('Nicht erlaubt.'); | |
| $file = './delicious2wordpress.data'; | |
| $read = fopen($file, 'r'); | |
| $line = intval(fgets($read, 64)); | |
| fclose($read); |