Next time write what CMS do you use.
For Post limit:
function limit_posts_on_homepage( $query ) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( 'posts_per_page', 3 );
}
}
add_action( 'pre_get_posts', 'limit_posts_on_homepage' );
To choose from what Category:
function my_home_category( $query ) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( 'cat', '11');
}
}
add_action( 'pre_get_posts', 'my_home_category' );
Or multiple:
$query->set( 'cat', '11', '14');
Next time write what CMS do you use.
**For Post limit:**
function limit_posts_on_homepage( $query ) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( 'posts_per_page', 3 );
}
}
add_action( 'pre_get_posts', 'limit_posts_on_homepage' );
**To choose from what Category:**
function my_home_category( $query ) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( 'cat', '11');
}
}
add_action( 'pre_get_posts', 'my_home_category' );
**Or multiple:**
$query->set( 'cat', '11', '14');