banner



How To Change Blog Page Layout In Wordpress

layout by flywheel how to create custom post templates wordpress woman working on laptop covered in stickers

Have you ever seen a post details page with a completely different layout from other posts on the same site? That's probably because it's using a custom template. You can assign a custom template to individual posts, giving you increased flexibility over the appearance of your site.

Interested in learning how to create a custom single-post template? In this post, I'll show you how you can easily create your own!

The benefit of custom templates

Before we start creating one, let's explore why you might need a custom template and what it does.

If you want a particular post or post type to stand out from the rest of your content, you may want to consider creating a custom single-post template. This template will only be applied to the post(s) you assign it to, meaning it can have an entirely different layout than your standard posts. A unique design and layout can then increase user engagement for that particular post.

Ready to develop your own? Creating and using a custom post template is similar to a custom page template.

layout by flywheel how to create custom post template wordpress woman sitting at desk with laptop covered in stickers

How to create a custom post template

I will be using the Twenty Seventeen theme for my example, but the process will be same for any theme.

Before creating a custom post template, I will create a child theme first. You can work in the main theme, but since you're creating a custom template, if you update the parent theme you'll lose your template. For this reason, it's good practice to keep your custom templates separate from the main theme.

For a custom template, you have to define a Template Name (the name of the template) and a Template Post Type (where this template will be used). It looks like this:

            
<?php /* Template Name: Full Width Post * Template Post Type: post*/ /*The template for displaying full width single posts. */ get_header( ); ?>            

When you save the file, keep the file name relevant to the template name, like full-width-post.php. If you view a post from the admin panel, it will show the new template in a dropdown of the Post Attributes section.

layout by flywheel custom post template how to post attributes template fill width post

Our custom template is ready, but it's not useful yet. Let's make it a bit more beneficial!

Note: We'll be working on multiple files, so keep track of the file names and folders.

Here's the current layout of blog post pages in the Twenty Seventeen theme. I'm happy with that, so we'll leave it be.

layout by flywheel custom post template how to normal post example

Now, let's say you want a full-width layout for a few posts. We'll put the post title above the meta data. The meta data should have a border at the top and bottom, and both the title and meta data should be centered aligned. Here's the wireframe:

layout by flywheel custom post template how to post title post date by author template rough mockup

To make this layout, you need to find which file is responsible for displaying post details pages. In most themes, single.php is the file, unless there are certain predefined templates. The code structure varies from theme to theme, so it may take a little learning to understand how your particular theme works.

Once you've found the file that displays post details pages, you should find if a function is used to call another file or the template is created directly. In this example with the Twenty Seventeen theme, it's get_template_part function.

The get_template_part path is the most important part to follow here.

              
<div class="wrap">  <div id="primary" class="content-area">         	<main id="main" class="site-main" role="main">               	<?php /* Start the Loop */ while ( have_posts() ) : the_post(); get_template_part( 'template-parts/post/content', get_post_format() ); // 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; the_post_navigation( array( 'prev_text' => '<span class="screen-reader-text">' . __( 'Previous Post', 'twentyseventeen' ) . '</span><span aria-hidden="true" class="nav-subtitle">' . __( 'Previous', 'twentyseventeen' ) . '</span> <span class="nav-title"><span class="nav-title-icon-wrapper">' . twentyseventeen_get_svg( array( 'icon' => 'arrow-left' ) ) . '</span>%title</span>',                           	'next_text' => '<span class="screen-reader-text">' . __( 'Next Post', 'twentyseventeen' ) . '</span><span aria-hidden="true" class="nav-subtitle">' . __( 'Next', 'twentyseventeen' ) . '</span> <span class="nav-title">%title<span class="nav-title-icon-wrapper">' . twentyseventeen_get_svg( array( 'icon' => 'arrow-right' ) ) . '</span></span>',                     	) );               	endwhile; // End of the loop.               	?>              

As you can see, it's referring to a path:

                
get_template_part( 'template-parts/post/content', get_post_format() );                
layout by flywheel custom post template how to wordpress files on local machine

So the content.php file is called inside single.ph to output the post details page.

Now that you know how the single.php file is working, let's copy the code from it and paste it into our previously createdfull-width-post.php file in the child theme. Since it will be a full-width template, we'll remove the sidebar.

layout by flywheel custom post template how to full width post file highlighted

Now copy the content.php file from the above-mentioned path. You can paste it in the same directory where your template file exists, but I'd suggest following the same folder structure as the parent theme.

You can keep the file name as it is, but if you ever wish to change something in the default template it'll cause a conflict, so to avoid any issues, I'd suggest renaming the file and keeping it relevant to the template name, such as content-full-width.php.

layout by flywheel custom post template how to full width content file in post folder on local machine

The files are in place, so now let's modify the code to swap the post title and post meta data.

                  
<header class="entry-header">         	<?php          	if ( is_single() ) {               	the_title( '  <h1 class="entry-title">', '</h1>  ' );         	} elseif ( is_front_page() && is_home() ) {               	the_title( '  <h3 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h3>  ' );         	} else {               	the_title( '  <h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>  ' );         	}          	if ( 'post' === get_post_type() ) {                	echo '  <div class="entry-meta">';                     	if ( is_single() ) {                     	  	twentyseventeen_posted_on();                     	} else {                           	echo twentyseventeen_time_link();                           	twentyseventeen_edit_link();                     	};               	echo '</div>  <!-- .entry-meta -->';         	};         	?>   	</header>  <!-- .entry-header -->                  

To use this template, edit the desired post from the WordPress admin and assign the template from the dropdown menu.

layout by flywheel custom post template how to full width post custom template selected in wordpress

If you check the post on the front end, it's still not full-width, but the title and meta data have swapped places, so we know that the post is using our custom template

layout by flywheel custom post template how to full width website screenshot

We have to add some CSS to make it full width. WordPress auto generates a class as per the template name in the body section.

layout by flywheel custom post template how to full width post with inspect website screenshot

Use that class to target this particular template. You can add the CSS to the child theme style.css file.

                    
.post-template-full-width-post.has-sidebar:not(.error404) #primary{ float:none; width:auto; }  .post-template-full-width-post .entry-header{ text-align:center; margin-bottom:1.3em; }  .post-template-full-width-post .entry-meta{ border-top:1px solid #ccc; border-bottom:1px solid #ccc; padding:15px 0; }                    

Now we have the layout as we wanted. Any post using this template will have this exact same style.

layout by flywheel custom post template how to full width post

You can create as many custom templates as you want to fit your requirements. You can even create templates based on post categories.

Can I use a plugin for this?

If you are not comfortable with PHP codes, then you can use some plugins, but I must admit, there are very few plugins available for creating custom post templates and most of them are not very useful because you have to manually create the template anyways.

I have found the Post Custom Templates Lite plugin very useful. It's a free plugin that allows you to create post templates without any coding in a nice drag-and-drop interface. It has lots of customization options, so if you want to customize a post template, in general this plugin can help you out.

Note: The free version only allows your to customize normal post templates. You have to use the pro version to be able to create custom post templates and get some additional features.

layout by flywheel how to create custom post template wordpress man typing on laptop sitting on blue couch with dog

Conclusion

Whether you work manually or use a plugin to create a custom single post template, it allows your most important posts to stand out from the rest. For inspiration, check out Brian Dean's site; he uses a particular template for his definitive guide posts to make them look unique from rest of his posts.

So, give it a try and create your own unique single-post template.

All photography in this article was shot in-house at Flywheel.


Still need to convince your clients?

Convincing your clients that managed WordPress hosting is right for their business is no easy feat. To help your mission, we've packaged up a couple of one-sheeters explaining the value of managed hosting that you can pass straight to your client. Download it here!


What are you going to learn next? Try one of these tutorials!

  • How to choose the best CSS units to create better site layouts
  • How to add a responsive Google Map in WordPress
  • How to efficiently migrate your sites from Adobe Business Catalyst to WordPress (+ over 20 resources!)

How To Change Blog Page Layout In Wordpress

Source: https://getflywheel.com/layout/create-custom-single-post-templates-wordpress-how-to/

Posted by: davisalowely.blogspot.com

0 Response to "How To Change Blog Page Layout In Wordpress"

Post a Comment

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel