<?php
/**
* The template part for displaying page content
*
* @package The Computer Repair
* @subpackage the-computer-repair
* @since the-computer-repair 1.0
*/
?>
<div id="content-vw">
<?php if(has_post_thumbnail()) {?>
<img class="page-image" src="<?php the_post_thumbnail_url('full'); ?>">
<hr>
<?php }?>
<h1><?php the_title();?></h1>
<?php the_content();?>
<?php
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
?>
<div class="clearfix"></div>
</div>
It only worked here if I change the div “content-vw” to “post” or any other name.
sorry, single.php view perfect.
page.php not working content list.
great, it helped me a lot too.
Thank you very much…