You have to replace catID with your category ID, example if your category ID for blowjobs is 43:
<?php $args = array( 'numberposts' => 42, 'orderby' => 'rand', 'category__in' => array(43) );
If you like to exclude category, then replace category__in to category__not_in.
If you like to include or exclude multiple categories the you can but them like this: array(43, 56, 78)
|