Warning: _delete_empty_element(): Argument #1 ($element) must be passed by reference, value given in
// Prepare exclude terms array
$excludes_terms = explode( ',', SimpleTags_Plugin::get_option_value( 'auto_link_exclude' ) );
if ( empty( $excludes_terms ) ) {
$excludes_terms = array();
} else {
$excludes_terms = array_filter( $excludes_terms, '_delete_empty_element' );
$excludes_terms = array_unique( $excludes_terms );
}