This commit introduces a more reliable and consistent approach to setting up the development environment using backups: - Add setup-from-backup.sh script for environment setup from existing backups - Standardize script naming and organization - Move obsolete scripts to bin/obsolete directory - Update documentation with new workflow instructions - Create migration guide for transitioning to new workflow - Update Memory Bank with workflow improvements The new workflow provides: - More reliable environment setup - Faster setup process - Offline development capability - Consistent development environments across team members Breaking changes: - setup-dev.sh is replaced by setup-from-backup.sh - sync-and-setup.sh is replaced by separate scripts - verify-with-wpcli.sh is no longer used Migration path is documented in MIGRATION_GUIDE.md
		
			
				
	
	
		
			53 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Title: Comments
 | |
|  * Slug: twentytwentyfive/comments
 | |
|  * Description: Comments area with comments list, pagination, and comment form.
 | |
|  * Categories: text
 | |
|  * Block Types: core/comments
 | |
|  *
 | |
|  * @package WordPress
 | |
|  * @subpackage Twenty_Twenty_Five
 | |
|  * @since Twenty Twenty-Five 1.0
 | |
|  */
 | |
| 
 | |
| ?>
 | |
| <!-- wp:comments {"className":"wp-block-comments-query-loop","style":{"spacing":{"margin":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}}} -->
 | |
| <div class="wp-block-comments wp-block-comments-query-loop" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--70)">
 | |
| 	<!-- wp:heading {"fontSize":"x-large"} -->
 | |
| 	<h2 class="wp-block-heading has-x-large-font-size"><?php esc_html_e( 'Comments', 'twentytwentyfive' ); ?></h2>
 | |
| 	<!-- /wp:heading -->
 | |
| 	<!-- wp:comments-title {"level":3,"fontSize":"large"} /-->
 | |
| 	<!-- wp:comment-template -->
 | |
| 	<!-- wp:group {"style":{"spacing":{"margin":{"top":"0","bottom":"var:preset|spacing|50"}}}} -->
 | |
| 	<div class="wp-block-group" style="margin-top:0;margin-bottom:var(--wp--preset--spacing--50)">
 | |
| 		<!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap","verticalAlignment":"top"}} -->
 | |
| 		<div class="wp-block-group">
 | |
| 			<!-- wp:avatar {"size":50} /-->
 | |
| 			<!-- wp:group -->
 | |
| 			<div class="wp-block-group">
 | |
| 				<!-- wp:comment-date /-->
 | |
| 				<!-- wp:comment-author-name /-->
 | |
| 				<!-- wp:comment-content /-->
 | |
| 				<!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap"}} -->
 | |
| 				<div class="wp-block-group">
 | |
| 					<!-- wp:comment-edit-link /-->
 | |
| 					<!-- wp:comment-reply-link /-->
 | |
| 				</div>
 | |
| 				<!-- /wp:group -->
 | |
| 			</div>
 | |
| 			<!-- /wp:group -->
 | |
| 		</div>
 | |
| 		<!-- /wp:group -->
 | |
| 	</div>
 | |
| 	<!-- /wp:group -->
 | |
| 	<!-- /wp:comment-template -->
 | |
| 
 | |
| 	<!-- wp:comments-pagination {"layout":{"type":"flex","justifyContent":"space-between"}} -->
 | |
| 	<!-- wp:comments-pagination-previous /-->
 | |
| 	<!-- wp:comments-pagination-next /-->
 | |
| 	<!-- /wp:comments-pagination -->
 | |
| 
 | |
| 	<!-- wp:post-comments-form /-->
 | |
| </div>
 | |
| <!-- /wp:comments -->
 |