$first_post =
get_site_option( 'first_post'
);
if ( !
$first_post ) { $first_post = "<!-- wp:paragraph -->\n<p>" .
/* translators: First post content. %s: Site link. */
__( 'Welcome to %s. This is your first post. Edit or delete it, then start writing!'
) .
"</p>\n<!-- /wp:paragraph -->";
} $first_post =
sprintf( $first_post,
sprintf( '<a href="%s">%s</a>',
esc_url( network_home_url() ),
get_network()->site_name
) );
// Back-compat for pre-4.4.
$first_post =
str_replace( 'SITE_URL',
esc_url( network_home_url() ),
$first_post );
$first_post =
str_replace( 'SITE_NAME',
get_network()->site_name,
$first_post );
} else { $first_post = "<!-- wp:paragraph -->\n<p>" .
/* translators: First post content. %s: Site link. */
__( 'Welcome to WordPress. This is your first post. Edit or delete it, then start writing!'
) .
"</p>\n<!-- /wp:paragraph -->";
}