diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/pages/listing/_list_explore.html b/wagtail/wagtailadmin/templates/wagtailadmin/pages/listing/_list_explore.html
index f9f4c3a64..d9b7abb80 100644
--- a/wagtail/wagtailadmin/templates/wagtailadmin/pages/listing/_list_explore.html
+++ b/wagtail/wagtailadmin/templates/wagtailadmin/pages/listing/_list_explore.html
@@ -9,6 +9,33 @@
{% endblock %}
{% block post_parent_page_headers %}
+
+ {% if parent_page.is_root %}
+
+ {% if perms.wagtailcore.add_site %}
+ {% blocktrans %}
+ The root level is where you can add new sites to your Wagtail installation. Pages created here will not be available at any URL until they are associated with a site through the Settings -> Sites area. To add pages to an existing site, create them as children of the homepage.
+ {% endblocktrans %}
+ {% else %}
+ {% blocktrans %}
+ Pages created here will not be available at any URL. To add pages to an existing site, create them as children of the homepage.
+ {% endblocktrans %}
+ {% endif %}
+ |
+ {% elif not parent_page.url %}
+
+ {% if perms.wagtailcore.add_site %}
+ {% blocktrans %}
+ There is no site record for this location. Pages created here will not be available at any URL until a site is configured through the Settings -> Sites area.
+ {% endblocktrans %}
+ {% else %}
+ {% blocktrans %}
+ There is no site record for this location. Pages created here will not be available at any URL.
+ {% endblocktrans %}
+ {% endif %}
+ |
+ {% endif %}
+
{% include "wagtailadmin/pages/listing/_table_headers_explore.html" %}
{% endblock %}