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 to functions.php or place in mu-plugins | |
// Admin Notice on Posts Page | |
add_action( 'admin_notices', 'scl_postspage_print_notices' ); | |
function scl_postspage_print_notices() { | |
$screen = get_current_screen(); | |
if ( $screen->parent_base != 'edit' || $screen->base != 'post' || $_REQUEST['action'] != 'edit' ) | |
return; |
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: Steph's Tiny List Child Pages Plugin | |
Plugin URI: http://sillybean.net/2010/06/listing-child-pages-with-a-shortcode/ | |
Description: Lets you list child pages using a shortcode. Also displays child page list by default on empty parent pages. | |
Author: Stephanie Leary | |
Version: 1.0 | |
Author URI: http://sillybean.net/ | |
License: GPL v2 or later | |
*/ |
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
function remove_dashboard_widgets() { | |
global $wp_meta_boxes; | |
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now']); | |
// unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']); | |
// unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']); | |
// unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_drafts']); | |
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']); | |
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']); | |
unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']); // WordPress Blog | |
unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']); // Other WordPress News |
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 get_header(); ?> | |
<div id="content" class="section"> | |
<h2>I'm sorry. I couldn't find the page you requested.</h2> | |
<p>You can try searching for it or looking for it in the <a href="/sitemap">site map</a>.</p> | |
<?php get_template_part( 'searchform' ); ?> | |
<?php |
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 | |
header('Content-Type: text/xml'); | |
$url = $_GET['url']; | |
$data = file_get_contents($url); | |
echo $data; | |
?> |
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
function remove_my_taxonomy_boxes() | |
{ | |
$tax_name = 'my_taxonomy'; | |
$content_type = 'post'; | |
// presumably there is some condition you want to check, like current_user_can('something') | |
$remove = true; | |
if ($remove) | |
remove_meta_box( $tax_name.'div', $content_type, 'side' ); | |
} |
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: Tagged Galleries | |
Description: Lets you add multiple [gallery] tags in a single WordPress page. Specify the images to be included in each gallery using tags: [gallery tag="foo"] (assuming you have tagged the images). | |
Version: 1.0 | |
Author: Stephanie Leary | |
Author URI: http://sillybean.net/ | |
*/ | |
add_action('admin_init', 'register_attachment_tags'); |
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: 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 |
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: Add Plugins Link | |
Description: Adds plugin and theme links to the Network Admin section of the admin menu bar. | |
Author: Stephanie Leary | |
Version: 1.0 | |
Author URI: http://stephanieleary.com | |
*/ | |
add_action('admin_bar_menu', 'add_plugins_link_for_superadmins', 25); |
OlderNewer