Skip to content

Instantly share code, notes, and snippets.

@lelandf
Last active October 20, 2021 20:24
Show Gist options
  • Save lelandf/2fdd83764c9f1e4312caeaf7973124bf to your computer and use it in GitHub Desktop.
Save lelandf/2fdd83764c9f1e4312caeaf7973124bf to your computer and use it in GitHub Desktop.
Override "Untitled" filter in Twenty Twenty-One theme
<?php
add_filter( 'the_title', function( $title, $id ) {
if ( 0 === $id && 'Untitled' === $title ) {
$title = '';
}
return $title;
}, 11, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment