Skip to content

Instantly share code, notes, and snippets.

@fueledbyboredom
fueledbyboredom / remove-admin-bar.php
Created February 14, 2017 16:35
Disables the front-end admin bar.
<?php
add_filter( 'show_admin_bar', '__return_false' );
@fueledbyboredom
fueledbyboredom / custom-excerpt-length.php
Created February 14, 2017 16:41
Customize the length of excerpts, in this example we are returning 20 words
<?php
function mwpf_custom_excerpt_length( $length ) {
return 20;
}
add_filter( 'excerpt_length', 'mwpf_custom_excerpt_length');