Home User profile
tagDiv Member
This user did not write anything. So we are just showing here some random text to make the profile page look nice :)
deividaskrupstas
tagDiv Member

Hi
Another issue i want to show only specific blog categories as my home page display latest post. Have no issues on desktops but in AMP code have no effect and shows all categories.

function my_home_category( $query ) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( 'cat', '1,4,404,12');
}
}
add_action( 'pre_get_posts', 'my_home_category' );

Viewing 1 post (of 1 total)