1. Add .php in wp-content/themes/
Write
<?php
/**
* Template Name: <subpage-name>, left sidebar
* Description: A one-colum template with left sidebar for <subpage-name> ONLY
*/
get_header(); ?>
2. Copy full-width page basic codes.
3. Add new div for
<div id="main" class="<subpage-name>-right clearfix" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'page' ); ?>
<?php comments_template( '', true ); ?>
<?php endwhile; // end of the loop. ?>
</div>
<div id="main" class="<subpage-name>-left clearfix">
</div>
4. Set style in css.
div#main.<subpage-name>-left{width:240px;float:left;}
div#main.<subpage-name>-right{width:780px;float:right;}
article{margin-top: -44px;}
Related Posts:
- No three-columns template in TwentyEleven?
- How do I get the size of an attachment file?
- How to get slug of current category in taxonomy template?
- Using WordPress templating for HTML emails
- I put my blog on a subpage, how do I get page title?
- Outputting Canonical Resource URLs Across a Multisite Network?
- Restrict a search to a custom post type
- Test if page is child and has children, if so echo child pages also on grandchild pages
- How did you incorporate WooCommerce in your own WordPress theme?
- Correct process for a new Page Template?
- Templates & CSS – Proper Programming Practice?
- wordpress – load a template based on the URI
- A shared custom taxonomy between two custom post types
- Creating a custom category page with pagination
- New Template — copy existing template and change code? [duplicate]
- Same template for all the terms of a taxonomy
- Modifying searchform.php and search.php to have two kinds of searches
- Create a WordPress template without navigation and footer
- Template redirect is_tax() not working
- Hide Front-End Admin Bar Including 32 px Spacing
- Passing variables to template parts
- Show template loaded
- Change directory where get_header(), get_footer() and get_sidebar() look for templates
- How can I make my custom templates respect permissions?
- How to format shortcode’s HTML in external file
- How to replace WordPress sidebars (widget areas) with Gutenberg
- Unable to include a template
- Turning on the 404 page on localhost
- Checking for page templates in child theme
- Is there an action hook that fires just before a template is loaded?
- post edit button on front end
- What’s the equivalent of front-page.php for a custom static page?
- Stylesheet comment header: Which header names are mandatory? [duplicate]
- How to add posts list to a page template?
- Valid HTML in Template Part
- Why do I get the same excerpt for all items in my RSS feed?
- What is this code trying to do? It was the cause of my 20s TTFB
- get_post_metadata() undefined when used in loop in RSS template
- the_excerpt producing empty output
- Problem when linking out to separate file within foreach loop
- Conditional tags or Multiple files
- Getting term description in single post template
- Cannot edit style.css from admin panel, because the template is looking for style.min.css
- Can I add a default Block to my custom theme?
- Remove post templates from the selection box menu when creating a single post
- How to convert the WordPress meta box Page Attributes->Page Template dropdown to radio buttons?
- global variables in templates
- Real Time Page Template Preview in WP Admin [closed]
- Best practice to update the file header.php
- page-{slug}.php vs. template-{slug}.php
- Understanding the Template hierarchy
- wp_enqueue_style and different styles for blog template
- Can I have both front-page.php and index.php?
- Two exact templates, sidebar showing in one but not the other
- get_header(), get_footer() from plugin template
- How can I use default CPT templates from sub-folder?
- Problem creating a custom category page with pagination
- If Posted After Date
- how can I add a “read more” tag directly in the template?
- Update template without undoing all my edits?
- How to get and set the post tag value within WP Query from URL?
- How to display specific child page template in wordpress
- The wordpress website is showing ‘w’ while it loads and in the footer
- how to properly include or get file contents in a wordpress theme
- Is there a wordpress template like this [closed]
- Assign Specific Template for Custom Post slug
- Modify just ONE page based on a template
- creating single page with 2 columns while theme is 3 column
- Including template pages within another template?
- Why won’t the action hook wp_head accept parameters?
- trouble calling different header.php for home.php
- the_post() in RSS feed
- How Add Code in Page Index Custom Template?
- Editing my loop-page.php causes posts to show on all pages
- How can i conditionally load taxonomy-{taxonomy}.php template php files through functions.php
- Commented code in WordPress template?
- Search button click sends to single-custom_post_type instead staying at the same page
- WordPress site not loading styles on desktop?
- Display all page which have not a certain template
- ACF – Attach JS file depending on ACF field
- Which template(s) to override to use a different sidebar for blog, single posts, categories, blog archive?
- Validating Error with submit button
- how to insert gravity newsletter subscription form in template
- how to change custom post type search template to output search results in posttype-archive.php
- How can I modify this code to include the parent?
- Locating the template behind a WordPress Page
- why get_header doesn’t work twice in a test
- Is this the best way to complete disable category archive pages?
- Why is my no-results.php template moving my sidebar and footer into the main container?
- Search results in custom template
- Is there a list of all possible WordPress URL’s?
- How can I setup custom templates for a meta-data query
- Move Index to a page
- Problem with custom page template and permalink
- Index template and Home page
- How to display page content and a list of posts on the same page?
- How to limit block activity (insertion/deletion) to inside of a Block Template on the Admin Screen?
- How to change post template
- WordPress template restored by mistake
- Unload templates; disable parent Template Parts using only “theme.json”