Read more »

','boxy' ), esc_attr( get_permalink( $post->ID ) ), esc_attr( get_the_title( $post->ID ) ) ); return $output; } function boxy_excerpt_length( $length ) { return 20; } add_filter( 'excerpt_length', 'boxy_excerpt_length', 999 ); add_action( 'wp_head', 'boxy_custom_css' ); function boxy_custom_css() { global $boxy; if( isset( $boxy['custom-css'] ) ) { $custom_css = ''; echo $custom_css; } }