function add_resources(){
wp_enqueue_style('style', get_stylesheet_uri());
wp_enqueue_style('style-main', get_template_directory_uri() . '/style-min/style-main.css');
}
add_action('wp_enqueue_scripts','add_resources');
function my_post_queries( $query ) {
// do not alter the query on wp-admin pages and only alter it if it's the main query
if (!is_admin() && $query->is_main_query()){
// alter the query for the home and category pages
if(is_category()){
$query->set('posts_per_page', 1);
$query->set('post_type','product');
}
}
}
add_action( 'pre_get_posts', 'my_post_queries' );