Site icon Hip-Hop Website Design and Development

making a customized submit template

I need to customise my particular person posts. I’ve an instance of what I am making an attempt to attain beneath. Would I make a customized submit template for this? In that case how would I do that? Or ought to I add to my single.php? Thanks upfront.

What I need my particular person submit pages to appear to be. I need two footage facet by facet which can be the total width of the web page. Textual content. One image that’s the full width of the web page. Textual content. One image thats begins on the left fringe of the web page and has textual content subsequent to it. After which one full width image.

Right here is my single.php

<?php
get_header();
the_post_thumbnail('banner-image'); 
if (have_posts()) :
whereas (have_posts()) : the_post(); ?>
<article class="submit">

<?php wpb_set_post_views(get_the_ID()); ?>    
    <div class="post-info">
    <h1 class="post-title"><?php the_title(); ?></h1>
   <h2 class="post-date"><?php echo strip_tags(get_the_term_list( $post->ID, 'location', 'Location: ', ', ', ' • ' ));?><?php the_date('F m, Y'); ?></h2>

    </div>
    <div class="post-content"><?php the_content(); ?></div>

<?php comments_template(); ?>
</article>
<?php endwhile;
else :
echo '<p>No content material discovered</p>';
endif;
get_footer();

?>

Any perception would assist. I understand how I need it to look, I simply do not precisely know the right way to obtain it.