As of November 5th, 2013, this version of the blacklist will no longer be updated.
I have migrated the project to a full Git repository in order to better track changes, bugs, and feedback.
Check out Comment Blacklist for WordPress on GitHub.
| <?php | |
| /** | |
| * Plugin Name: Fix Twitter Oembed | |
| */ | |
| class FixTwitterOembed { | |
| private static $twitter_oembed_regex = '#https?://(www\.)?twitter\.com/.+?/status(es)?/.*#i'; | |
| public static function init() { | |
| self::add_actions(); | |
| } |
| <?php | |
| /* | |
| Plugin Name: BuddyPress Spam Link | |
| Description: Adds the "Mark as spammer" link back to the admin bar, and adds "Spammer" to the activity stream's entry meta buttons. | |
| Plugin URI: http://sillybean.net/ | |
| Version: 0.2 | |
| Author: Stephanie Leary | |
| */ | |
| // restore action moved to settings in 1.6 |
As of November 5th, 2013, this version of the blacklist will no longer be updated.
I have migrated the project to a full Git repository in order to better track changes, bugs, and feedback.
Check out Comment Blacklist for WordPress on GitHub.
| <?php | |
| /* | |
| Plugin Name: Scroll-To-Top Admin Bar | |
| Description: Click anywhere on the Admin Bar that doesn't have a predefined purpose (links, input), and it'll scroll you to the top | |
| Author: Kailey Lampert | |
| Author URI: http://kaileylampert.com | |
| */ | |
| add_action( 'wp_head', 'add_jq' ); | |
| add_action( 'admin_head', 'add_jq' ); |