Skip to content

Instantly share code, notes, and snippets.

@andyknapp
andyknapp / functions.php
Created June 20, 2013 02:01
Add a widget to the WP admin dashboard
function ak_dashboard_widget() { ?>
<p>stuff</p>
<?php
}
function ak_add_dashboard_widget() {
wp_add_dashboard_widget('wp_dashboard_widget', 'Welcome to This Site', 'ak_dashboard_widget');
}
add_action('wp_dashboard_setup', 'ak_add_dashboard_widget');
@andyknapp
andyknapp / functions.php
Created June 20, 2013 02:00
Change footer in WP admin
function ak_remove_footer_admin() { ?>
<p>&copy; <?php echo date('Y'); ?> sitename.com</p>
<?php
}
add_filter('admin_footer_text', 'ak_remove_footer_admin');
@andyknapp
andyknapp / functions.php
Last active December 18, 2015 17:39
Custom logo on WP login screen
function ak_custom_login_logo() {
wp_enqueue_style( 'ak_custom_login_logo', get_stylesheet_directory_uri() . '/login.css' );
}
add_action('login_head', 'ak_smj_custom_login_logo');
@andyknapp
andyknapp / functions.php
Last active December 18, 2015 17:39
Remove WP version number from head
remove_action( 'wp_head', 'wp_generator');
@andyknapp
andyknapp / functions.php
Last active December 18, 2015 17:39
Removes WordPress sign-in error message
add_filter ( 'login_errors', create_function ('$a', "return null;"));