Set Latest single post page as front page.
-
I want to set my latest post single page as home page.
I did this thing.
function one_posts_on_homepage( $query ) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( ‘posts_per_page’, 1 );
}
}But its only giving me latest post page which displays only one post.
I want individual post page of latest post in my home.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Set Latest single post page as front page.’ is closed to new replies.