First you will need to create a custom page template and copy the styling from your page.php file. After that, you will use a loop below to display all posts in one page.###
<?php
// the query
$wpb_all_query = new WP_Query(array('post_type'=>'post', 'post_status'=>'publish', 'posts_per_page'=>-1)); ?>
<?php if ( $wpb_all_query->have_posts() ) : ?>
<ul>
<!-- the loop -->
<?php while ( $wpb_all_query->have_posts() ) : $wpb_all_query->the_post(); ?>
<li><a href="https://wordpress.stackexchange.com/questions/285947/<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
<!-- end of the loop -->
</ul>
<?php wp_reset_postdata(); ?>
<?php else : ?>
<p><?php _e( 'Sorry, no posts matched your criteria.' ); ?></p>
<?php endif; ?>
Related Posts:
- How to detect single.php (but not single-portfolio.php)?
- Custom Single Post By Category
- Using single.php from plugin folder instead of default template folder
- Custom permalink structure only for default posts
- Related Posts by Multiple Tags?
- How do I create a link that will always show the latest post?
- Post X of Y in single.php / sidebar.php
- HTML code in Custom field
- How to have different content in the loop and single
- Single.php Active Category Class
- How to add shortcode tags in single.php [closed]
- get_terms parent for current product only
- custom single.php not working
- How to display different single post template based on author?
- how load content as pop-up using ajax
- Disable single post page
- how to know if the post has pagination () or not
- Remove arrows from previous and next link
- “next_posts_link” and “previous_posts_link” display me NOTHING
- How to disable single post view in wp
- Custom Post Templates
- Add code just after Post content
- Pagination on single post page?
- Restrict post navigation to current sub menu
- Can’t get the_content of the parent page from its single post?
- Show all posts in sidebar in single.php
- How to show single post page as home page
- Using wp_list_categories like the the_category (showing just current categories of a post)
- How can I make a post that belongs to a category or have specific tags, display different from the other single posts?
- Display all posts that were published before full post on single.php
- Add Read More Tag to a post content (Single.php)
- If in_category not working for multiple single.php pages
- Single.php – Get Current Parent Category
- Insert sometext after first h3 in content
- Thumbnail Image to go in the post aswell
- Add get_the_tags() to Single Posts section via functions.php
- Is it possible to customize the post according to post format in single.php?
- Multiple comment forms on a single page
- Post type no single page
- Single Post in Tab/Slider
- Defined function isn’t showed on page
- get_previous_post() while accounting for sticky posts
- wp-link-pages in header and footer of the post
- Changing wp_link_pages() to “Next Page” and “Previous Page” buttons?
- Attachment image single page
- Nest Next and Previous in a href with class that has a background image
- Making a wordpress page print friendly
- WordPress single.php different layouts projects / posts
- Can I style single post that are in multiple catergories?
- “Home” Page now only displaying the single latest post
- How to save template data into wp_post table (post_content column)
- WordPress – When visiting a `single post/ single.php` my category menu item link becomes active
- How do I change the template specifically for single posts?
- Show single post child category from a determined parent
- out of nowhere
- WP posts using index.php instead of single.php
- Single post shows post three times
- How do I check if a post is password protected?
- Pagination for single post
- Get the category of post
- Only show related posts when another post has same term
- List posts of assigned categories in list of all categories on single.php
- Is possible to do this from function.php
- Custom Single Post Type not referring to single-post-type.php File
- Hide Certain Tags on Single Post Page
- Thumbnail With Next/Prev Links Not Showing Next Post?
- Add wp-link-pages to post
- Pagination and Related Posts
- Single post page from static home not working
- Get current post’s child page?
- 1 post, 2 templates
- Wrap div-tag around posts in page
- Insert Shortcode exactly at the end of the content
- WordPress More tag doesn’t work on Single post
- No matching template found when using single.php
- how show post date for specific post?
- Show Next/Previous without Link
- How to disable content pagination?
- How to add/assign or change featured image in post programmatically?
- WP-CLI Bulk delete posts from specific category
- Exclude ALL posts from sub categories
- Can’t show comments count per post outside loop
- Redirect based on user post count
- Allow role to delete posts but block him the wp-admin
- Remove the Edit button in posts for permalinks on certain user roles? WP 3.3
- display random posts on index.php instead of latest
- Automatically Import WordPress Blog to Facebook Page [closed]
- Only show a Post once in 10 visits
- Split post title for styling
- Pull in posts using post meta for REST API
- Avoiding duplcate posts on the main page
- How to work with posts and sub posts?
- How to center all text body in single.php at once?
- Top tags with minimum number of posts
- Set a post expiration and delete a post when expirate
- Next / Previous post in a single category
- Secretly passing post ID/title etc into a shortcode form automatically to link submission to post
- If I moved the location of my generic “posts” page, do I need to change the slugs for all of the individual posts?
- How to organise post by category and date
- How to include Related Posts in WP RSS feed