I want to load the post content only with no title, date, comment, etc info. Is there a way to grab the post only?
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
<?php endif; ?>
Simply replace:
With:
The former is looking for something like content-status.php or content-aside.php or most likely, in the case of a plain old ‘post’, content.php in your theme root.
You can replace
with
and edit a copy of
content-page.php
with namecontent-myformat.php
where you can removethe_title()
row.