Just a suggestion: Unless this would make Matt unhappy.
This is the default setting already for new ClassicPress installs:
<table class="form-table" role="presentation">
<tr>
<th scope="row"><label for="blogname"><?php _e( 'Site Title' ); ?></label></th>
<td><input name="blogname" type="text" id="blogname" value="<?php form_option( 'blogname' ); ?>" class="regular-text"></td>
</tr>
<?php
/* translators: Site tagline. */
$sample_tagline = __( 'Just another ClassicPress site' );
if ( is_multisite() ) {
/* translators: %s: Network title. */
$sample_tagline = sprintf( __( 'Just another %s site' ), get_network()->site_name );
}
?>
<tr>
<th scope="row"><label for="blogdescription"><?php _e( 'Tagline' ); ?></label></th>
<td><input name="blogdescription" type="text" id="blogdescription" aria-describedby="tagline-description" value="<?php form_option( 'blogdescription' ); ?>" class="regular-text" placeholder="<?php echo $sample_tagline; ?>">
<p class="description" id="tagline-description"><?php _e( 'In a few words, explain what this site is about.' ); ?></p></td>
</tr>
Are you suggesting that any site migrating to ClassicPress with the default of Just another WordPress site should have that text changed?
1 Like
Yes. It’s something that I do with each new install, at least at the beginning. You replace the WP logo with the CP logo for Favicon, etc. So, why not change the Tagline?
1 Like
I’ve opened an issue at the Migration plugin for consideration:
opened 03:41PM - 04 Jun 26 UTC
As suggested on the Forums, the ClassicPress migration plugin could run code to … change the default site tagline during migrations form WordPress
https://forums.classicpress.net/t/classicpress/6589/3
The WordPress default is `Just another WordPress site`.
The ClassicPress default is `Just another ClassicPress site`.
During migration the database value for `blogdescription` could be changed.
3 Likes