• I want to have a custom template that leaves the page absolutely blank / reset form.

    I’ve already made one custom template but it seems its still inheriting some css files.

    The purpose is to make a massively customized front page for my site.

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • I’ve already made one custom template but it seems its still inheriting some css files.

    what is the exact full code of that template file?

    Thread Starter bcastillo

    (@bcastillo)

    <?php
    /**
     *	Template Name: Very Custom Template
     */
     ?>
    
     <?php
    							/* Run the loop to output the posts.
    							 * If you want to overload this in a child theme then include a file
    							 * called loop-index.php and that will be used instead.
    							 */
    								if(have_posts()) : while(have_posts()) : the_post();
    								?>
    									<div class="page-item">
    
    										<div><?php the_content(); ?></div>
    									</div>
    								<?php
    								endwhile;
    								endif;
    							?>
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Custom Template with absolutely no inheritance’ is closed to new replies.