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
		
			
				
	
	
		
			47 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Title: Comments
 | |
|  * Slug: twentytwentyfour/hidden-comments
 | |
|  * Inserter: no
 | |
|  */
 | |
| ?>
 | |
| 
 | |
| <!-- wp:comments {"className":"wp-block-comments-query-loop"} -->
 | |
| <div class="wp-block-comments wp-block-comments-query-loop">
 | |
| 	<!-- wp:heading -->
 | |
| 	<h2><?php esc_html_e( 'Comments', 'twentytwentyfour' ); ?></h2>
 | |
| 	<!-- /wp:heading -->
 | |
| 	<!-- wp:comments-title {"level":3} /-->
 | |
| 	<!-- wp:comment-template -->
 | |
| 	<!-- wp:group {"style":{"spacing":{"margin":{"top":"0","bottom":"var:preset|spacing|30"}}}} -->
 | |
| 	<div class="wp-block-group" style="margin-top:0;margin-bottom:var(--wp--preset--spacing--30)">
 | |
| 		<!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap"},"style":{"spacing":{"blockGap":"0.5em"}}} -->
 | |
| 		<div class="wp-block-group">
 | |
| 			<!-- wp:avatar {"size":40} /-->
 | |
| 			<!-- wp:group -->
 | |
| 			<div class="wp-block-group">
 | |
| 				<!-- wp:comment-author-name /-->
 | |
| 				<!-- wp:comment-date /-->
 | |
| 			</div>
 | |
| 			<!-- /wp:group -->
 | |
| 		</div>
 | |
| 		<!-- /wp:group -->
 | |
| 		<!-- 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 -->
 | |
| 	<!-- /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 {"style":{"spacing":{"padding":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"}}}} /-->
 | |
| </div>
 | |
| <!-- /wp:comments -->
 |