• How can I customise the “Attachment page” in Twenty Twenty Two Theme? is there a way to create a template?
    For info I’m talking about the attachment.php, that doesn’t exist in block theme.

Viewing 1 replies (of 1 total)
  • Hi

    Just create a child theme and add attachment.php and it will work

    attachemen.php

    <?php
    get_header();
    	if ( have_posts() ) {
    
    		while ( have_posts() ) {
    
    			the_post();
    
    			the_title( '<h2>', '</h2>' );
    
    			the_content();
    
    		}
    	}
    get_footer();
Viewing 1 replies (of 1 total)
  • The topic ‘Custom Attachment Page – Twenty Twenty Two?’ is closed to new replies.