diff --git a/packages/edit-site/src/components/sidebar-navigation-screen-template/index.js b/packages/edit-site/src/components/sidebar-navigation-screen-template/index.js index ae8369be928184..ca80b0cafa1213 100644 --- a/packages/edit-site/src/components/sidebar-navigation-screen-template/index.js +++ b/packages/edit-site/src/components/sidebar-navigation-screen-template/index.js @@ -28,8 +28,14 @@ export default function SidebarNavigationScreenTemplate( { postType = 'wp_template', } ) { const { setCanvasMode } = unlock( useDispatch( editSiteStore ) ); - const { getDescription, getTitle } = useEditedEntityRecord(); - const description = getDescription(); + const { getDescription, getTitle, record } = useEditedEntityRecord(); + let description = getDescription(); + if ( ! description && record.is_custom ) { + description = __( + 'This is a custom template that can be applied manually to any Post or Page.' + ); + } + return (